Skip to content

Commit 279cfda

Browse files
authored
Add CI testing on Python 3.10 beta2 (#1122)
* Begin testing on Python 3.10 beta 2 * Try to fix 3.10 build * Add nox session
1 parent 54a7752 commit 279cfda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
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]
12+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-beta.2]
1313
fail-fast: false
1414
runs-on: ${{ matrix.os }}
1515
steps:

noxfile.py

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

0 commit comments

Comments
 (0)