Skip to content

Commit

Permalink
fix: resolve issue where pre-release versions of dependencies are ins…
Browse files Browse the repository at this point in the history
…talled

PiperOrigin-RevId: 733650587
  • Loading branch information
vertex-sdk-bot authored and copybara-github committed Mar 5, 2025
1 parent 26efb7b commit 3216bdd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pypi/_vertex_ai_placeholder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@
exec(fp.read(), version)
version = version["__version__"]

tensorboard_extra_require = ["tensorflow >=2.3.0, <3.0.0dev; python_version<='3.11'"]
tensorboard_extra_require = ["tensorflow >=2.3.0, <3.0.0; python_version<='3.11'"]
metadata_extra_require = ["pandas >= 1.0.0", "numpy>=1.15.0"]
xai_extra_require = ["tensorflow >=2.3.0, <3.0.0dev"]
xai_extra_require = ["tensorflow >=2.3.0, <3.0.0"]
lit_extra_require = [
"tensorflow >= 2.3.0, <3.0.0dev",
"tensorflow >= 2.3.0, <3.0.0",
"pandas >= 1.0.0",
"lit-nlp == 0.4.0",
"explainable-ai-sdk >= 1.0.0",
]
profiler_extra_require = [
"tensorboard-plugin-profile >= 2.4.0, <3.0.0dev",
"werkzeug >= 2.0.0, <2.1.0dev",
"tensorflow >=2.4.0, <3.0.0dev",
"tensorboard-plugin-profile >= 2.4.0, <3.0.0",
"werkzeug >= 2.0.0, <2.1.0",
"tensorflow >=2.4.0, <3.0.0",
]
featurestore_extra_require = [
"google-cloud-bigquery-storage",
Expand All @@ -56,7 +56,7 @@
"pyyaml>=5.3.1,<7",
]
datasets_extra_require = [
"pyarrow >= 3.0.0, < 8.0dev; python_version<'3.11'",
"pyarrow >= 3.0.0, < 8.0; python_version<'3.11'",
"pyarrow >= 10.0.1; python_version=='3.11'",
"pyarrow >= 14.0.0; python_version>='3.12'",
]
Expand Down

0 comments on commit 3216bdd

Please sign in to comment.