Skip to content

Commit 5e14496

Browse files
authored
fix(deps): require packaging >= 22.0 (#811)
* fix(deps): require packaging >= 22.0 * require packaging >= 22.0 * fix(deps): require google-cloud-bigquery 3.4.2 * testing numpy * fix(deps): require numpy >=1.18.1
1 parent cc1040a commit 5e14496

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pandas_gbq/features.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""Module for checking dependency versions and supported features."""
66

77
# https://github.com/googleapis/python-bigquery/blob/main/CHANGELOG.md
8-
BIGQUERY_MINIMUM_VERSION = "3.3.5"
8+
BIGQUERY_MINIMUM_VERSION = "3.4.2"
99
BIGQUERY_QUERY_AND_WAIT_VERSION = "3.14.0"
1010
PANDAS_VERBOSITY_DEPRECATION_VERSION = "0.23.0"
1111
PANDAS_BOOLEAN_DTYPE_VERSION = "1.0.0"

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
dependencies = [
2424
"setuptools",
2525
"db-dtypes >=1.0.4,<2.0.0",
26-
"numpy >=1.16.6",
26+
"numpy >=1.18.1",
2727
"pandas >=1.1.4",
2828
"pyarrow >=3.0.0",
2929
"pydata-google-auth >=1.5.0",
@@ -35,8 +35,8 @@
3535
"google-auth-oauthlib >=0.7.0",
3636
# Please also update the minimum version in pandas_gbq/features.py to
3737
# allow pandas-gbq to detect invalid package versions at runtime.
38-
"google-cloud-bigquery >=3.3.5,<4.0.0dev",
39-
"packaging >=20.0.0",
38+
"google-cloud-bigquery >=3.4.2,<4.0.0dev",
39+
"packaging >=22.0.0",
4040
]
4141
extras = {
4242
"bqstorage": [

testing/constraints-3.8.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ db-dtypes==1.0.4
1010
google-api-core==2.10.2
1111
google-auth==2.13.0
1212
google-auth-oauthlib==0.7.0
13-
google-cloud-bigquery==3.3.5
13+
google-cloud-bigquery==3.4.2
1414
google-cloud-bigquery-storage==2.16.2
15-
numpy==1.16.6
15+
numpy==1.18.1
1616
pandas==1.1.4
1717
pyarrow==3.0.0
1818
pydata-google-auth==1.5.0
1919
tqdm==4.23.0
20-
packaging==20.0.0
20+
packaging==22.0.0

0 commit comments

Comments
 (0)