Skip to content

Commit

Permalink
Add CI testing on Python 3.10 beta2 (#1122)
Browse files Browse the repository at this point in the history
* Begin testing on Python 3.10 beta 2

* Try to fix 3.10 build

* Add nox session
  • Loading branch information
tleonhardt committed Jun 15, 2021
1 parent 54a7752 commit 279cfda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-beta.2]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def docs(session):
)


@nox.session(python=['3.6', '3.7', '3.8', '3.9'])
@nox.session(python=['3.6', '3.7', '3.8', '3.9', '3.10.0-beta.2'])
@nox.parametrize('plugin', [None, 'ext_test', 'template', 'coverage'])
def tests(session, plugin):
if plugin is None:
Expand Down

0 comments on commit 279cfda

Please sign in to comment.