Skip to content

Commit

Permalink
Add Python 3.10 to build/test matrix, bump protobuf version (#292)
Browse files Browse the repository at this point in the history
* Add Python 3.10 to build and test matrix

* bump protobuf version in setup.cfg

* 3.10 is not 3.1
  • Loading branch information
berndverst authored Nov 1, 2021
1 parent 566a914 commit 64783fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_ver: [3.7, 3.8, 3.9]
python_ver: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python_ver }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_ver: [3.7, 3.8, 3.9]
python_ver: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- uses: azure/setup-helm@v1
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packages = find_namespace:
include_package_data = True
zip_safe = False
install_requires =
protobuf == 3.18.1
protobuf == 3.19.1
grpcio >= 1.26.0
aiohttp >= 3.6.2
python-dateutil >= 2.8.1
Expand Down

0 comments on commit 64783fd

Please sign in to comment.