Skip to content

Commit ea65817

Browse files
panhaniacopybara-github
authored andcommitted
Upgrade Python dependencies.
PiperOrigin-RevId: 889168747
1 parent b0b97f3 commit ea65817

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
- name: Set up Python
4545
run: |
4646
pip install wheel pytest
47+
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
48+
pip install --upgrade setuptools==77.0.3
4749
pip install -e ./fleetspeak_python[test]
4850
pip install -e ./frr_python
4951
- name: Lint
@@ -226,6 +228,8 @@ jobs:
226228
- name: Install dependencies
227229
run: |
228230
pip install wheel pytest
231+
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
232+
pip install --upgrade setuptools==77.0.3
229233
- name: Build Python
230234
run: |
231235
pip install -e ./fleetspeak_python[test]
@@ -264,6 +268,8 @@ jobs:
264268
# Ideally, required dependencies should be installed in a non-hacky, proper way.
265269
# go get -v -t ./... || echo "Dependency installation failed, continuing anyway ¯\_(ツ)_/¯"
266270
pip install wheel
271+
# TODO: b/494671594 - Remove once Python is upgraded to Python 3.13.
272+
pip install --upgrade setuptools==77.0.3
267273
- name: Build
268274
shell: bash
269275
run: |

fleetspeak_python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from setuptools.command.develop import develop
2525
from setuptools.command.sdist import sdist
2626

27-
GRPCIO_VERSION = "==1.69.0"
27+
GRPCIO_VERSION = "==1.78.0"
2828

2929
THIS_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
3030
os.chdir(THIS_DIRECTORY)

frr_python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from setuptools.command.develop import develop
77

8-
GRPCIO_TOOLS = "grpcio-tools==1.69.0"
8+
GRPCIO_TOOLS = "grpcio-tools==1.78.0"
99
THIS_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
1010
os.chdir(THIS_DIRECTORY)
1111

0 commit comments

Comments
 (0)