From 2f35d83363ff3f96df8ecb26cbc80e905976afcf Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Sat, 4 Dec 2021 11:34:36 -0500 Subject: [PATCH] Add python3.10 to CI tests --- .github/workflows/ci.yaml | 2 ++ tox.ini | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30c31b8..55db065 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,8 @@ jobs: toxenv: py38 - version: 3.9 toxenv: py39 + - version: 3.10 + toxenv: py310 steps: - name: Checkout uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index b0ccd7d..b594c27 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37, py38, py39, static, static-tests, security +envlist = py36, py37, py38, py39, py310, static, static-tests, security isolated_build = true skip_missing_interpreters = true