Skip to content

Commit

Permalink
Update requirements versions to be more compatible with tensorflow.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 485051928
  • Loading branch information
xingyousong authored and copybara-github committed Oct 31, 2022
1 parent 0e1c650 commit 50ab3e2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/algorithms_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip setuptools
pip install wheel
pip install grpcio-tools
pip install grpcio-tools==1.48.2
pip install pytest pytest-xdist
- name: Install Vizier
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip setuptools
pip install wheel
pip install grpcio-tools
pip install grpcio-tools==1.48.2
pip install pytest pytest-xdist
- name: Install Vizier
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip setuptools
pip install wheel
pip install grpcio-tools
pip install grpcio-tools==1.48.2
pip install pytest pytest-xdist
- name: Install Vizier
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip
pip install setuptools wheel twine grpcio-tools
pip install setuptools wheel twine grpcio-tools==1.48.2
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ attrs==21.4.0
absl-py>=1.0.0
numpy>=1.21.5
coverage>=4.5,<=6.4.2
protobuf>=3.6,<4.0
protobuf>=3.20,<4.0
mock>=3.0,<=4.0.3
pytype>=2022.3.8,<=2022.4.22
grpcio>=1.35.0,<=1.47.0
portpicker==1.3.1
pytype>=2022.10.26
portpicker>=1.5.2
pytest # Use the latest version to match github workflow.
grpcio-tools>=1.35.0,<=1.47.0
googleapis-common-protos==1.56.0
google-api-python-client==1.12.8
grpcio>=1.35.0,<=1.48.2
grpcio-tools>=1.35.0,<=1.48.2
googleapis-common-protos>=1.56.4
google-api-python-client>=2.65.0

This comment has been minimized.

Copy link
@Ark-kun

Ark-kun Jan 13, 2023

Contributor

Is this package used by the google-vizier package?

sqlalchemy==1.4
2 changes: 1 addition & 1 deletion vizier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

sys.path.append(PROTO_ROOT)

__version__ = "0.0.11"
__version__ = "0.0.12"

0 comments on commit 50ab3e2

Please sign in to comment.