Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
- name: Set up Python
run: |
pip install wheel pytest
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
pip install --upgrade setuptools==77.0.3
pip install -e ./fleetspeak_python[test]
pip install -e ./frr_python
- name: Lint
Expand Down Expand Up @@ -226,6 +228,8 @@ jobs:
- name: Install dependencies
run: |
pip install wheel pytest
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
pip install --upgrade setuptools==77.0.3
- name: Build Python
run: |
pip install -e ./fleetspeak_python[test]
Expand Down Expand Up @@ -264,6 +268,8 @@ jobs:
# Ideally, required dependencies should be installed in a non-hacky, proper way.
# go get -v -t ./... || echo "Dependency installation failed, continuing anyway ¯\_(ツ)_/¯"
pip install wheel
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
pip install --upgrade setuptools==77.0.3
- name: Build
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion fleetspeak_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from setuptools.command.develop import develop
from setuptools.command.sdist import sdist

GRPCIO_VERSION = "==1.69.0"
GRPCIO_VERSION = "==1.78.0"

THIS_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
os.chdir(THIS_DIRECTORY)
Expand Down
2 changes: 1 addition & 1 deletion frr_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup
from setuptools.command.develop import develop

GRPCIO_TOOLS = "grpcio-tools==1.69.0"
GRPCIO_TOOLS = "grpcio-tools==1.78.0"
THIS_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
os.chdir(THIS_DIRECTORY)

Expand Down
Loading