Skip to content

Commit

Permalink
Upgrade versions to support Python 3.11+ due to GRPC dependency fixes.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 721570429
  • Loading branch information
xingyousong authored and copybara-github committed Jan 31, 2025
1 parent 371d6e0 commit 74e41b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # 3.11 breaks grpcio-tools.
python-version: '3.11'
- name: Install dependencies
run: |
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip
pip install setuptools wheel twine==5.0.0 grpcio-tools==1.48.2
pip install setuptools wheel twine==5.0.0 grpcio-tools>=1.70.0
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # 3.11 breaks grpcio-tools.
python-version: '3.11'
- name: Install dependencies
run: |
sudo apt-get install -y libprotobuf-dev
python -m pip install --upgrade pip
pip install setuptools wheel twine==5.0.0 grpcio-tools==1.48.2
pip install setuptools wheel twine==5.0.0 grpcio-tools>=1.70.0
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion vizier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

sys.path.append(PROTO_ROOT)

__version__ = "0.1.21"
__version__ = "0.1.22"

0 comments on commit 74e41b5

Please sign in to comment.