From 279cfda015e8bef231cbce52c8ae1b7b4ce14edf Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Mon, 14 Jun 2021 22:57:04 -0400 Subject: 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 --- .github/workflows/ci.yml | 2 +- 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: 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: -- cgit v1.2.1