Skip to content

Commit 02c97c1

Browse files
authored
chore: enable cpp tests for 3.9 (#234)
Binary wheels for protoc for python 3.9 have been published, so the corresponding unit tests should be enabled.
1 parent f431b1e commit 02c97c1

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/proto-plus/.github/workflows/tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ jobs:
4848
matrix:
4949
python: [3.6, 3.7, 3.8, 3.9]
5050
variant: ['', cpp]
51-
# Note: as of 2021-02-09, there are no 3.9 python wheels for protobuf/grpc
52-
exclude:
53-
- python: 3.9
54-
variant: cpp
5551
steps:
5652
- name: Cancel Previous Runs
5753
uses: styfle/cancel-workflow-action@0.9.0

packages/proto-plus/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def unit(session, proto="python"):
5454
# Check if protobuf has released wheels for new python versions
5555
# https://pypi.org/project/protobuf/#files
5656
# This list will generally be shorter than 'unit'
57-
@nox.session(python=["3.6", "3.7", "3.8"])
57+
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
5858
def unitcpp(session):
5959
return unit(session, proto="cpp")
6060

0 commit comments

Comments
 (0)