From 51a146e56ae0ad4d0bd08f16a84a6ddca41aca2b Mon Sep 17 00:00:00 2001 From: psowinsk <piotr.sowinski@cern.ch> Date: Tue, 25 Feb 2025 15:52:25 +0100 Subject: [PATCH] NXCALS-8007 missing pyarrow dependency --- gradle.properties | 1 + python/extraction-api-python3/build.gradle | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index dab361d67d..9699888537 100644 --- a/gradle.properties +++ b/gradle.properties @@ -114,6 +114,7 @@ pytestVersion=8.3.3 pythonDateutilVersion=2.9 pytzVersion=2024.2 pandasVersion=2.2.2 +pyarrowVersion=19.0.1 typingExtensionsVersion=4.11.0 venvPackVersion=0.2.0 cmwTracingVersion=0.6.1 diff --git a/python/extraction-api-python3/build.gradle b/python/extraction-api-python3/build.gradle index d2ab9abf06..281cfa0ec7 100644 --- a/python/extraction-api-python3/build.gradle +++ b/python/extraction-api-python3/build.gradle @@ -1,6 +1,7 @@ ext { coreDependencies = ["numpy~=$numpyVersion", - "pandas~=$pandasVersion"] + "pandas~=$pandasVersion", + "pyarrow~=$pyarrowVersion"] testDependencies = [ "coverage~=$coverageVersion", "pytest~=$pytestVersion", -- GitLab