Skip to content
Open
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
PATH="$HOME/.local/bin:$PATH"
- uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'
pip-version: '25.2'
- uses: actions/cache@v3
with:
Expand All @@ -43,7 +43,7 @@ jobs:
${{ runner.os }}-pip-
- name: Set up Python
run: |
pip install wheel pytest
pip install setuptools wheel pytest
pip install -e ./fleetspeak_python[test]
pip install -e ./frr_python
- name: Lint
Expand Down Expand Up @@ -141,12 +141,12 @@ jobs:
go-version: '1.26'
- uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'
pip-version: '25.2'
- name: Install dependencies
run: |
powershell Install-WindowsFeature Net-Framework-Core
pip install wheel
pip install setuptools wheel
- name: Build installers
shell: bash
run: |
Expand Down Expand Up @@ -181,11 +181,11 @@ jobs:
go-version: '1.26'
- uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'
pip-version: '25.2'
- name: Install dependencies
run: |
pip install wheel
pip install setuptools wheel
- name: Build installers
run: |
go build -o fleetspeak-client ./cmd/fleetspeak_client/fleetspeak_client.go
Expand Down Expand Up @@ -221,11 +221,11 @@ jobs:
go-version: '1.26'
- uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'
pip-version: '25.2'
- name: Install dependencies
run: |
pip install wheel pytest
pip install setuptools wheel pytest
- name: Build Python
run: |
pip install -e ./fleetspeak_python[test]
Expand Down Expand Up @@ -255,15 +255,15 @@ jobs:
path: ${{ github.workspace }}/src/github.com/google/fleetspeak
- uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'
pip-version: '25.2'
- name: Install dependencies
shell: bash
run: |
# TODO: The dependency installation fails, but good enough to make the tests pass.
# 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
pip install setuptools wheel
- 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