File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 2424from setuptools .command .develop import develop
2525from setuptools .command .sdist import sdist
2626
27- GRPCIO_VERSION = "==1.69 .0"
27+ GRPCIO_VERSION = "==1.78 .0"
2828
2929THIS_DIRECTORY = os .path .dirname (os .path .realpath (__file__ ))
3030os .chdir (THIS_DIRECTORY )
Original file line number Diff line number Diff line change 55from setuptools import setup
66from setuptools .command .develop import develop
77
8- GRPCIO_TOOLS = "grpcio-tools==1.69 .0"
8+ GRPCIO_TOOLS = "grpcio-tools==1.78 .0"
99THIS_DIRECTORY = os .path .dirname (os .path .realpath (__file__ ))
1010os .chdir (THIS_DIRECTORY )
1111
You can’t perform that action at this time.
0 commit comments