From 5499a4ac17a22fdaa77fabbad3c26d0490844062 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 5 Mar 2022 10:11:52 +0000 Subject: [PATCH 1/7] chore(deps): update all dependencies --- dev_requirements.txt | 4 +-- samples/snippets/requirements-test.txt | 10 +++---- samples/snippets/requirements.txt | 36 +++++++++++++------------- setup.py | 2 +- 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/dev_requirements.txt b/dev_requirements.txt index e4a6a867..aab1a88d 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -2,6 +2,6 @@ sqlalchemy>=1.1.9 google-cloud-bigquery>=1.6.0 future==0.18.2 -pytest==6.2.5 -pytest-flake8==1.0.7 +pytest==7.0.1 +pytest-flake8==1.1.0 pytz==2021.3 \ No newline at end of file diff --git a/samples/snippets/requirements-test.txt b/samples/snippets/requirements-test.txt index 426fb5ff..63ed6ab6 100644 --- a/samples/snippets/requirements-test.txt +++ b/samples/snippets/requirements-test.txt @@ -1,6 +1,6 @@ attrs==21.4.0 -click==8.0.3 -google-auth==2.3.3 +click==8.0.4 +google-auth==2.6.0 google-cloud-testutils==1.3.1 iniconfig==1.1.1 packaging==21.3 @@ -8,9 +8,9 @@ pluggy==1.0.0 py==1.11.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 -pyparsing==3.0.6 -pytest==6.2.5 +pyparsing==3.0.7 +pytest==7.0.1 rsa==4.8 six==1.16.0 toml==0.10.2 -typing-extensions==4.0.1 +typing-extensions==4.1.1 diff --git a/samples/snippets/requirements.txt b/samples/snippets/requirements.txt index b7670ad6..f16d07b0 100644 --- a/samples/snippets/requirements.txt +++ b/samples/snippets/requirements.txt @@ -1,34 +1,34 @@ -alembic==1.7.5 +alembic==1.7.6 certifi==2021.10.8 -charset-normalizer==2.0.10 +charset-normalizer==2.0.12 future==0.18.2 -geoalchemy2==0.10.2 -google-api-core[grpc]==2.4.0 -google-auth==2.3.3 -google-cloud-bigquery==2.32.0 -google-cloud-core==2.2.1 +geoalchemy2==0.11.0 +google-api-core[grpc]==2.6.0 +google-auth==2.6.0 +google-cloud-bigquery==2.34.1 +google-cloud-core==2.2.2 google-crc32c==1.3.0 -google-resumable-media==2.1.0 -googleapis-common-protos==1.54.0 +google-resumable-media==2.3.1 +googleapis-common-protos==1.55.0 greenlet==1.1.2 -grpcio==1.43.0 -grpcio-status==1.43.0 +grpcio==1.44.0 +grpcio-status==1.44.0 idna==3.3 importlib-resources==5.4.0 mako==1.1.6 -markupsafe==2.0.1 +markupsafe==2.1.0 packaging==21.3 -proto-plus==1.19.8 -protobuf==3.19.3 +proto-plus==1.20.3 +protobuf==3.19.4 pyasn1==0.4.8 pyasn1-modules==0.2.8 -pyparsing==3.0.6 +pyparsing==3.0.7 python-dateutil==2.8.2 pytz==2021.3 requests==2.27.1 rsa==4.8 -shapely==1.8.0 +shapely==1.8.1.post1 six==1.16.0 -sqlalchemy==1.4.26 -typing-extensions==4.0.1 +sqlalchemy==1.4.31 +typing-extensions==4.1.1 urllib3==1.26.8 diff --git a/setup.py b/setup.py index 31840e81..0f37429d 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def readme(): # https://github.com/googleapis/python-bigquery-sqlalchemy/issues/386 # and # https://github.com/googleapis/python-bigquery-sqlalchemy/issues/385 - "sqlalchemy>=1.2.0,<=1.4.27", + "sqlalchemy>=1.4.31,<=1.4.31", "future", ], extras_require=extras, From 37ef8561d63171b1599de8796ed27c869da52067 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:06:48 -0500 Subject: [PATCH 2/7] revert change --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0f37429d..31840e81 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def readme(): # https://github.com/googleapis/python-bigquery-sqlalchemy/issues/386 # and # https://github.com/googleapis/python-bigquery-sqlalchemy/issues/385 - "sqlalchemy>=1.4.31,<=1.4.31", + "sqlalchemy>=1.2.0,<=1.4.27", "future", ], extras_require=extras, From 50b0b43cefcb45a6b2af52972809aeb0bbab7e16 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:08:03 -0500 Subject: [PATCH 3/7] limit max supported version for sqlalchemy to 1.4.27 --- samples/snippets/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/requirements.txt b/samples/snippets/requirements.txt index f16d07b0..251f0c77 100644 --- a/samples/snippets/requirements.txt +++ b/samples/snippets/requirements.txt @@ -29,6 +29,6 @@ requests==2.27.1 rsa==4.8 shapely==1.8.1.post1 six==1.16.0 -sqlalchemy==1.4.31 +sqlalchemy==1.4.27 typing-extensions==4.1.1 urllib3==1.26.8 From 1eca367a1165109c14102c2a2dae53cb5a4cd3e2 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:09:48 -0500 Subject: [PATCH 4/7] revert change --- samples/snippets/requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/requirements-test.txt b/samples/snippets/requirements-test.txt index 63ed6ab6..7c22a506 100644 --- a/samples/snippets/requirements-test.txt +++ b/samples/snippets/requirements-test.txt @@ -9,7 +9,7 @@ py==1.11.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 pyparsing==3.0.7 -pytest==7.0.1 +pytest==6.25 rsa==4.8 six==1.16.0 toml==0.10.2 From 3f970b62ccbe5806f445753a2847d9827032b180 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:10:27 -0500 Subject: [PATCH 5/7] revert change --- dev_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_requirements.txt b/dev_requirements.txt index aab1a88d..eb96b487 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -2,6 +2,6 @@ sqlalchemy>=1.1.9 google-cloud-bigquery>=1.6.0 future==0.18.2 -pytest==7.0.1 +pytest==6.25 pytest-flake8==1.1.0 pytz==2021.3 \ No newline at end of file From 1dbf0ff101c6817ee958b7b156c12cb648610483 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:11:00 -0500 Subject: [PATCH 6/7] fix typo --- dev_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_requirements.txt b/dev_requirements.txt index eb96b487..933bd8fd 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -2,6 +2,6 @@ sqlalchemy>=1.1.9 google-cloud-bigquery>=1.6.0 future==0.18.2 -pytest==6.25 +pytest==6.2.5 pytest-flake8==1.1.0 pytz==2021.3 \ No newline at end of file From b49aef329cd12474bd9b72a96263cffb8f2e8715 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Sat, 5 Mar 2022 11:11:08 -0500 Subject: [PATCH 7/7] fix typo --- samples/snippets/requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/requirements-test.txt b/samples/snippets/requirements-test.txt index 7c22a506..4055c210 100644 --- a/samples/snippets/requirements-test.txt +++ b/samples/snippets/requirements-test.txt @@ -9,7 +9,7 @@ py==1.11.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 pyparsing==3.0.7 -pytest==6.25 +pytest==6.2.5 rsa==4.8 six==1.16.0 toml==0.10.2