diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-06-14 22:57:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-14 22:57:04 -0400 |
| commit | 279cfda015e8bef231cbce52c8ae1b7b4ce14edf (patch) | |
| tree | e08890dd4ea919453a5ecc380bdb2b166ac87013 | |
| parent | 54a7752d720bb6724be17a6e965fcb81d5fcc176 (diff) | |
| download | cmd2-git-279cfda015e8bef231cbce52c8ae1b7b4ce14edf.tar.gz | |
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
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | noxfile.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f90bdc1..11f68e10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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: |
