From 79865650d3eddcc2dc9f3aece6e39814d04ea24a Mon Sep 17 00:00:00 2001 From: Jonathan Biemond Date: Sun, 12 Jan 2025 12:56:33 +0100 Subject: [PATCH] Update pipdeptree version to remove dependency on pip Increase the `pipdeptree` requirement version to be ">=2.23.2". This release of `pipdeptree` removes all references to `pip`. https://github.com/tox-dev/pipdeptree/pull/402 The deploy command, which uses `pipdeptree`, may now be used in environments without `pip`. Fixes #2203 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 646ed215a3..9b4125a675 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ gcsfs = {version = ">=2022.4.0", optional = true} botocore = {version = ">=1.28", optional = true} snowflake-connector-python = {version = ">=3.5.0", optional = true} cron-descriptor = {version = ">=1.2.32", optional = true} -pipdeptree = {version = ">=2.9.0,<2.10", optional = true} +pipdeptree = {version = ">=2.23.2", optional = true} pyathena = {version = ">=2.9.6", optional = true} weaviate-client = {version = ">=3.22", optional = true} adlfs = {version = ">=2024.7.0", optional = true} @@ -92,7 +92,7 @@ db-dtypes = { version = ">=1.2.0", optional = true } # `sql-sqlite` extra leads to dependency conflict with `apache-airflow` because `apache-airflow` # requires `sqlalchemy<2.0.0` while the extra requires `sqlalchemy>=2.0.18` # https://github.com/apache/airflow/issues/28723 -# pyiceberg = { version = ">=0.7.1", optional = true, extras = ["sql-sqlite"] } +# pyiceberg = { version = ">=0.7.1", optional = true, extras = ["sql-sqlite"] } # we will rely on manual installation of `sqlalchemy>=2.0.18` instead pyiceberg = { version = ">=0.8.1", python = ">=3.9", optional = true } databricks-sdk = {version = ">=0.38.0", optional = true}