Skip to content

Commit 96df4de

Browse files
committed
ci: pin protobuf=3.17.3
The 3.18.0 release of the protobuf package removed Python 2.x support. For now, pin to the previous release.
1 parent ef183f9 commit 96df4de

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install protobuf pycodestyle
21+
pip install protobuf==3.17.3 pycodestyle
2222
- name: Lint
2323
run: make -C tools/python lint
2424
- name: Test

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip
17-
pip install protobuf coveralls
17+
pip install protobuf==3.17.3 pycodestyle
1818
- name: Test with coverage
1919
run: |
2020
cd python

0 commit comments

Comments
 (0)