Skip to content

Commit c443cfd

Browse files
committed
Setting the version to just '3.10' appears to allow 3.10.0b2 to run for me
1 parent 0ffb195 commit c443cfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-beta.2]
12+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
1313
fail-fast: false
1414
runs-on: ${{ matrix.os }}
1515
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def docs(session):
1717
)
1818

1919

20-
@nox.session(python=['3.6', '3.7', '3.8', '3.9', '3.10.0-beta.2'])
20+
@nox.session(python=['3.6', '3.7', '3.8', '3.9', '3.10'])
2121
@nox.parametrize('plugin', [None, 'ext_test', 'template', 'coverage'])
2222
def tests(session, plugin):
2323
if plugin is None:

0 commit comments

Comments
 (0)