Skip to content

Commit de83fe3

Browse files
vertex-sdk-botcopybara-github
authored andcommitted
fix: Resolve issue where pre-release versions of dependencies are installed
PiperOrigin-RevId: 736553281
1 parent f281113 commit de83fe3

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

setup.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@
4747
]
4848

4949
profiler_extra_require = [
50-
"tensorboard-plugin-profile >= 2.4.0, <2.18.0", # <3.0.0dev",
51-
"werkzeug >= 2.0.0, <2.1.0dev",
52-
"tensorflow >=2.4.0, <3.0.0dev",
50+
"tensorboard-plugin-profile >= 2.4.0, <2.18.0", # <3.0.0",
51+
"werkzeug >= 2.0.0, <2.1.0",
52+
"tensorflow >=2.4.0, <3.0.0",
5353
]
5454
tensorboard_extra_require = [
55-
"tensorflow >=2.3.0, <3.0.0dev; python_version<='3.11'"
55+
"tensorflow >=2.3.0, <3.0.0; python_version<='3.11'"
5656
] + profiler_extra_require
5757

5858
metadata_extra_require = ["pandas >= 1.0.0", "numpy>=1.15.0"]
59-
xai_extra_require = ["tensorflow >=2.3.0, <3.0.0dev"]
59+
xai_extra_require = ["tensorflow >=2.3.0, <3.0.0"]
6060
lit_extra_require = [
61-
"tensorflow >= 2.3.0, <3.0.0dev",
61+
"tensorflow >= 2.3.0, <3.0.0",
6262
"pandas >= 1.0.0",
6363
"lit-nlp == 0.4.0",
6464
"explainable-ai-sdk >= 1.0.0",
@@ -72,7 +72,7 @@
7272
"pyyaml>=5.3.1,<7",
7373
]
7474
datasets_extra_require = [
75-
"pyarrow >= 3.0.0, < 8.0dev; python_version<'3.11'",
75+
"pyarrow >= 3.0.0, < 8.0.0; python_version<'3.11'",
7676
"pyarrow >= 10.0.1; python_version=='3.11'",
7777
"pyarrow >= 14.0.0; python_version>='3.12'",
7878
]
@@ -271,16 +271,16 @@
271271
install_requires=(
272272
(
273273
"google-api-core[grpc] >= 1.34.1,"
274-
" <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*"
274+
" <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*"
275275
),
276-
"google-auth >= 2.14.1, <3.0.0dev",
277-
"proto-plus >= 1.22.3, <2.0.0dev",
278-
"protobuf>=3.20.2,<6.0.0dev,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
276+
"google-auth >= 2.14.1, <3.0.0",
277+
"proto-plus >= 1.22.3, <2.0.0",
278+
"protobuf>=3.20.2,<6.0.0,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
279279
"packaging >= 14.3",
280-
"google-cloud-storage >= 1.32.0, < 3.0.0dev",
281-
"google-cloud-bigquery >= 1.15.0, < 4.0.0dev, !=3.20.0",
282-
"google-cloud-resource-manager >= 1.3.3, < 3.0.0dev",
283-
"shapely < 3.0.0dev",
280+
"google-cloud-storage >= 1.32.0, < 3.0.0",
281+
"google-cloud-bigquery >= 1.15.0, < 4.0.0, !=3.20.0",
282+
"google-cloud-resource-manager >= 1.3.3, < 3.0.0",
283+
"shapely < 3.0.0",
284284
)
285285
+ genai_requires,
286286
extras_require={

0 commit comments

Comments
 (0)