Skip to content

Commit cd19866

Browse files
committed
fix: resolve issue where pre-release versions of dependencies are installed
1 parent ba35b66 commit cd19866

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@
3030
# Note: google-api-core and google-auth are also included via transitive
3131
# dependency on google-cloud-bigquery, but this library also uses them
3232
# directly.
33-
"google-api-core >= 2.10.2, <3.0.0dev",
33+
"google-api-core >= 2.10.2, <3.0.0",
3434
"google-auth >=2.13.0",
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.4.2,<4.0.0dev",
38+
"google-cloud-bigquery >=3.4.2,<4.0.0",
3939
"packaging >=22.0.0",
4040
]
4141
extras = {
4242
"bqstorage": [
43-
"google-cloud-bigquery-storage >=2.16.2, <3.0.0dev",
43+
"google-cloud-bigquery-storage >=2.16.2, <3.0.0",
4444
],
4545
"tqdm": ["tqdm>=4.23.0"],
4646
"geopandas": ["geopandas>=0.9.0", "Shapely>=1.8.4"],

0 commit comments

Comments
 (0)