From 8391a5cd95ed08d37591911b31d63cc0ea2612cb Mon Sep 17 00:00:00 2001 From: Matthew Richards Date: Fri, 15 Jan 2021 14:29:55 +0000 Subject: [PATCH] #163: Remove non-working Python versions --- .github/workflows/ci-build.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 28968abf..4564e667 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-16.04 strategy: matrix: - python-version: ['3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.4.10', '3.5', '3.6', '3.7', '3.8', '3.9'] name: Python ${{ matrix.python-version }} Build steps: - name: Add apt repo diff --git a/noxfile.py b/noxfile.py index 19fc5705..f3385a05 100644 --- a/noxfile.py +++ b/noxfile.py @@ -82,7 +82,7 @@ def safety(session): session.log("Error: The temporary requirements file could not be closed") -@nox.session(python=["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"], reuse_venv=True) +@nox.session(python=["3.4", "3.5", "3.6", "3.7", "3.8", "3.9"], reuse_venv=True) def tests(session): args = session.posargs session.run("poetry", "install", external=True)