From 8103b5a6fb146b9f934b7799246b7869511fa780 Mon Sep 17 00:00:00 2001 From: GBBBAS Date: Fri, 2 Aug 2024 10:23:54 +0100 Subject: [PATCH 1/3] Updates to package versions Signed-off-by: GBBBAS --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 692b62038..e2e5c76f6 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ "azure-identity>=1.12.0,<2.0.0", "pandas>=1.5.2,<2.2.0", "jinja2>=3.1.2,<4.0.0", - "importlib_metadata>=7.0.0", + "importlib_metadata>=7.0.0,<8.0.0", "semver>=3.0.0,<4.0.0", "xlrd>=2.0.1,<3.0.0", "grpcio>=1.48.1", @@ -61,7 +61,7 @@ "azure-keyvault-secrets>=4.7.0,<5.0.0", "web3>=6.18.0,<7.0.0", "polars[deltalake]>=0.18.8,<1.0.0", - "delta-sharing>=1.0.0,<2.0.0", + "delta-sharing>=1.0.0,<1.1.0", "xarray>=2023.1.0,<2023.8.0", "ecmwf-api-client>=1.6.3,<2.0.0", "netCDF4>=1.6.4,<2.0.0", From 0cfd3422bccf0dfc6ffed4e7cdd468ffac8f2462 Mon Sep 17 00:00:00 2001 From: GBBBAS <42962356+GBBBAS@users.noreply.github.com> Date: Fri, 2 Aug 2024 15:22:59 +0100 Subject: [PATCH 2/3] Remove import (#795) Signed-off-by: GBBBAS --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index e2e5c76f6..737569d22 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,6 @@ # Always prefer setuptools over distutils from setuptools import setup, find_packages, sic -from setuptools.extern import packaging import pathlib import os From 262279c6a7207cce379b0030b24fde09a8c41551 Mon Sep 17 00:00:00 2001 From: GBBBAS Date: Fri, 7 Mar 2025 15:48:05 +0200 Subject: [PATCH 3/3] Update to packages Signed-off-by: GBBBAS --- environment.yml | 2 +- setup.py | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/environment.yml b/environment.yml index 193d7dedd..fe64a8544 100644 --- a/environment.yml +++ b/environment.yml @@ -83,6 +83,6 @@ dependencies: - entsoe-py>=0.5.10,<1.0.0 - web3>=6.18.0,<7.0.0 - eth-typing>=4.2.3,<5.0.0 - - pandas>=1.5.2,<2.2.0 + - pandas<3.0.0 - moto[s3]>=5.0.16,<6.0.0 - pyarrow>=14.0.1,<17.0.0 diff --git a/setup.py b/setup.py index 888f525fd..e1ea74d62 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ "databricks-sql-connector>=3.1.0,<4.0.0", "pyarrow>=14.0.1,<17.0.0", "azure-identity>=1.12.0,<2.0.0", - "pandas>=1.5.2,<2.2.0", + "pandas<3.0.0", "jinja2>=3.1.2,<4.0.0", "importlib_metadata>=7.0.0,<8.0.0", "semver>=3.0.0,<4.0.0", @@ -39,10 +39,13 @@ "grpcio>=1.48.1", "grpcio-status>=1.48.1", "googleapis-common-protos>=1.56.4", + "pydantic>=2.6.0,<3.0.0", +] + +LANGCHAIN_PACKAGES = [ "langchain>=0.2.0,<0.3.0", "langchain-community>=0.2.0,<0.3.0", "openai>=1.13.3,<2.0.0", - "pydantic>=2.6.0,<3.0.0", ] PYSPARK_PACKAGES = [ @@ -71,6 +74,7 @@ ] EXTRAS_DEPENDENCIES: dict[str, list[str]] = { + "langchain": LANGCHAIN_PACKAGES, "pipelines": PIPELINE_PACKAGES, "pyspark": PYSPARK_PACKAGES, }