From b04abbdd7e64c1831d12e3dce0266db6d2cd3051 Mon Sep 17 00:00:00 2001 From: Matthew Richards Date: Fri, 15 Jan 2021 14:58:07 +0000 Subject: [PATCH] #163: Remove Python 3.5 support - Some dependencies require Python >=3.6 --- .github/workflows/ci-build.yml | 2 +- README.md | 4 +--- noxfile.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 6e79a15c..fb14dd58 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.5', '3.6', '3.7', '3.8', '3.9'] + python-version: ['3.6', '3.7', '3.8', '3.9'] name: Python ${{ matrix.python-version }} Build steps: - name: Add apt repo diff --git a/README.md b/README.md index d4e48d91..092590d9 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,6 @@ development environment for this repo. This stage might take some time as each P version needs to be downloaded and built individually: ```bash -pyenv install 3.5.10 pyenv install 3.6.8 pyenv install 3.7.7 pyenv install 3.8.2 @@ -100,7 +99,6 @@ pyenv install 3.9.0 To verify the installation commands worked: ```bash -python3.5 --version python3.6 --version python3.7 --version python3.8 --version @@ -113,7 +111,7 @@ following command will create a `.python-version` file inside the repo (this fil currently listed in `.gitignore`): ```bash -pyenv local 3.5.10 3.6.8 3.7.7 3.8.2 3.9.0 +pyenv local 3.6.8 3.7.7 3.8.2 3.9.0 ``` diff --git a/noxfile.py b/noxfile.py index d4842eaa..4a97e124 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.5", "3.6", "3.7", "3.8", "3.9"], reuse_venv=True) +@nox.session(python=["3.6", "3.7", "3.8", "3.9"], reuse_venv=True) def tests(session): args = session.posargs session.run("poetry", "install", external=True)