Skip to content

Commit 8c27cca

Browse files
parthealeahecole
andauthored
fix: resolve issue where pre-release versions of dependencies are installed (#1169)
Co-authored-by: Leah E. Cole <6719667+leahecole@users.noreply.github.com>
1 parent 6bee2e4 commit 8c27cca

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ def readme():
5353
# Keep the no-op bqstorage extra for backward compatibility.
5454
# See: https://github.com/googleapis/python-bigquery/issues/757
5555
"bqstorage": [
56-
"google-cloud-bigquery-storage >= 2.0.0, <3.0.0dev",
56+
"google-cloud-bigquery-storage >= 2.0.0, <3.0.0",
5757
# Due to an issue in pip's dependency resolver, the `grpc` extra is not
5858
# installed, even though `google-cloud-bigquery-storage` specifies it
5959
# as `google-api-core[grpc]`. We thus need to explicitly specify it here.
6060
# See: https://github.com/googleapis/python-bigquery/issues/83 The
6161
# grpc.Channel.close() method isn't added until 1.32.0.
6262
# https://github.com/grpc/grpc/pull/15254
63-
"grpcio >= 1.47.0, < 2.0dev",
64-
"grpcio >= 1.49.1, < 2.0dev; python_version>='3.11'",
63+
"grpcio >= 1.47.0, < 2.0.0",
64+
"grpcio >= 1.49.1, < 2.0.0; python_version>='3.11'",
6565
"pyarrow >= 3.0.0",
6666
],
6767
}
@@ -109,14 +109,14 @@ def readme():
109109
],
110110
platforms="Posix; MacOS X; Windows",
111111
install_requires=[
112-
"google-api-core >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
112+
"google-api-core >= 1.31.5, <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
113113
# NOTE: Maintainers, please do not require google-auth>=2.x.x
114114
# Until this issue is closed
115115
# https://github.com/googleapis/google-cloud-python/issues/10566
116-
"google-auth>=1.25.0,<3.0.0dev", # Work around pip wack.
117-
"google-cloud-bigquery>=3.3.6,<4.0.0dev",
116+
"google-auth>=1.25.0,<3.0.0", # Work around pip wack.
117+
"google-cloud-bigquery>=3.3.6,<4.0.0",
118118
"packaging",
119-
"sqlalchemy>=1.4.16,<3.0.0dev",
119+
"sqlalchemy>=1.4.16,<3.0.0",
120120
],
121121
extras_require=extras,
122122
python_requires=">=3.8, <3.13",

0 commit comments

Comments
 (0)