diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index bcb5053..8b691e2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -6,7 +6,7 @@ jobs: test: strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ['3.7', '3.8', '3.9', '3.10'] runs-on: ubuntu-latest steps: - name: Checkout repo diff --git a/noxfile.py b/noxfile.py index 9bbd696..1fb051b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,7 +1,7 @@ import nox_poetry -@nox_poetry.session(python=["3.7", "3.8", "3.9"]) +@nox_poetry.session(python=["3.7", "3.8", "3.9", "3.10"]) def test(session: nox_poetry.Session): session.install(".") session.install("pytest", "pytest-cov", "pytest-timeout")