From 36e23cdfa1c4ce1071fa20b82e6fe3026cbddcb0 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 17 Sep 2024 12:27:52 -0400 Subject: [PATCH 1/5] fix(deps): require packaging >= 22.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 461cbfde..81cee77f 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ # Please also update the minimum version in pandas_gbq/features.py to # allow pandas-gbq to detect invalid package versions at runtime. "google-cloud-bigquery >=3.3.5,<4.0.0dev", - "packaging >=20.0.0", + "packaging >=22.0.0", ] extras = { "bqstorage": [ From 533ecb2cd673d66fdd5cd4246d5d2536f9e7dacf Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 17 Sep 2024 12:28:17 -0400 Subject: [PATCH 2/5] require packaging >= 22.0 --- testing/constraints-3.8.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/constraints-3.8.txt b/testing/constraints-3.8.txt index f77e0f2d..3927ef13 100644 --- a/testing/constraints-3.8.txt +++ b/testing/constraints-3.8.txt @@ -17,4 +17,4 @@ pandas==1.1.4 pyarrow==3.0.0 pydata-google-auth==1.5.0 tqdm==4.23.0 -packaging==20.0.0 \ No newline at end of file +packaging==22.0.0 \ No newline at end of file From e36ce9e36fd8d68c7c7835df5f0b393616985417 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 17 Sep 2024 12:33:10 -0400 Subject: [PATCH 3/5] fix(deps): require google-cloud-bigquery 3.4.2 --- pandas_gbq/features.py | 2 +- setup.py | 2 +- testing/constraints-3.8.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas_gbq/features.py b/pandas_gbq/features.py index 2871d5ea..62405b4c 100644 --- a/pandas_gbq/features.py +++ b/pandas_gbq/features.py @@ -5,7 +5,7 @@ """Module for checking dependency versions and supported features.""" # https://github.com/googleapis/python-bigquery/blob/main/CHANGELOG.md -BIGQUERY_MINIMUM_VERSION = "3.3.5" +BIGQUERY_MINIMUM_VERSION = "3.4.2" BIGQUERY_QUERY_AND_WAIT_VERSION = "3.14.0" PANDAS_VERBOSITY_DEPRECATION_VERSION = "0.23.0" PANDAS_BOOLEAN_DTYPE_VERSION = "1.0.0" diff --git a/setup.py b/setup.py index 81cee77f..fbe4b208 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ "google-auth-oauthlib >=0.7.0", # Please also update the minimum version in pandas_gbq/features.py to # allow pandas-gbq to detect invalid package versions at runtime. - "google-cloud-bigquery >=3.3.5,<4.0.0dev", + "google-cloud-bigquery >=3.4.2,<4.0.0dev", "packaging >=22.0.0", ] extras = { diff --git a/testing/constraints-3.8.txt b/testing/constraints-3.8.txt index 3927ef13..5a6d7bc6 100644 --- a/testing/constraints-3.8.txt +++ b/testing/constraints-3.8.txt @@ -10,7 +10,7 @@ db-dtypes==1.0.4 google-api-core==2.10.2 google-auth==2.13.0 google-auth-oauthlib==0.7.0 -google-cloud-bigquery==3.3.5 +google-cloud-bigquery==3.4.2 google-cloud-bigquery-storage==2.16.2 numpy==1.16.6 pandas==1.1.4 From c7cd04c6c85e2ce372d29e0d6db4f5d42b9d4bbc Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 17 Sep 2024 20:29:22 -0400 Subject: [PATCH 4/5] testing numpy --- testing/constraints-3.8.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/constraints-3.8.txt b/testing/constraints-3.8.txt index 5a6d7bc6..e551d17e 100644 --- a/testing/constraints-3.8.txt +++ b/testing/constraints-3.8.txt @@ -12,7 +12,7 @@ google-auth==2.13.0 google-auth-oauthlib==0.7.0 google-cloud-bigquery==3.4.2 google-cloud-bigquery-storage==2.16.2 -numpy==1.16.6 +numpy==1.18.1 pandas==1.1.4 pyarrow==3.0.0 pydata-google-auth==1.5.0 From 7884f6b649aa4db7a3ec06ded774cc7796cfa012 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 17 Sep 2024 20:31:19 -0400 Subject: [PATCH 5/5] fix(deps): require numpy >=1.18.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fbe4b208..df793e59 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ dependencies = [ "setuptools", "db-dtypes >=1.0.4,<2.0.0", - "numpy >=1.16.6", + "numpy >=1.18.1", "pandas >=1.1.4", "pyarrow >=3.0.0", "pydata-google-auth >=1.5.0",