summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-06-14 22:57:04 -0400
committerGitHub <noreply@github.com>2021-06-14 22:57:04 -0400
commit279cfda015e8bef231cbce52c8ae1b7b4ce14edf (patch)
treee08890dd4ea919453a5ecc380bdb2b166ac87013
parent54a7752d720bb6724be17a6e965fcb81d5fcc176 (diff)
downloadcmd2-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.yml2
-rw-r--r--noxfile.py2
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:
diff --git a/noxfile.py b/noxfile.py
index dadc53f9..38cc75bc 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -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: