Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 6a701ae

Browse files
committed
fix: resolve issue where pre-release versions of dependencies are installed
1 parent fcd5755 commit 6a701ae

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ def readme():
5252
# Keep the no-op bqstorage extra for backward compatibility.
5353
# See: https://github.com/googleapis/python-bigquery/issues/757
5454
"bqstorage": [
55-
"google-cloud-bigquery-storage >= 2.0.0, <3.0.0dev",
55+
"google-cloud-bigquery-storage >= 2.0.0, <3.0.0",
5656
# Due to an issue in pip's dependency resolver, the `grpc` extra is not
5757
# installed, even though `google-cloud-bigquery-storage` specifies it
5858
# as `google-api-core[grpc]`. We thus need to explicitly specify it here.
5959
# See: https://github.com/googleapis/python-bigquery/issues/83 The
6060
# grpc.Channel.close() method isn't added until 1.32.0.
6161
# https://github.com/grpc/grpc/pull/15254
62-
"grpcio >= 1.47.0, < 2.0dev",
63-
"grpcio >= 1.49.1, < 2.0dev; python_version>='3.11'",
62+
"grpcio >= 1.47.0, < 2.0.0",
63+
"grpcio >= 1.49.1, < 2.0.0; python_version>='3.11'",
6464
"pyarrow >= 3.0.0",
6565
],
6666
}
@@ -94,14 +94,14 @@ def readme():
9494
],
9595
platforms="Posix; MacOS X; Windows",
9696
install_requires=[
97-
"google-api-core >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
97+
"google-api-core >= 1.31.5, <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
9898
# NOTE: Maintainers, please do not require google-auth>=2.x.x
9999
# Until this issue is closed
100100
# https://github.com/googleapis/google-cloud-python/issues/10566
101-
"google-auth>=1.25.0,<3.0.0dev", # Work around pip wack.
102-
"google-cloud-bigquery>=2.25.2,<4.0.0dev",
101+
"google-auth>=1.25.0,<3.0.0", # Work around pip wack.
102+
"google-cloud-bigquery>=2.25.2,<4.0.0",
103103
"packaging",
104-
"sqlalchemy>=1.2.0,<2.0.0dev",
104+
"sqlalchemy>=1.2.0,<2.0.0",
105105
],
106106
extras_require=extras,
107107
python_requires=">=3.8, <3.13",

0 commit comments

Comments
 (0)