From 4e16a4beb043da06ec09fcbb26b97f17d06c073d Mon Sep 17 00:00:00 2001 From: Louis-Philippe Lemieux Perreault Date: Fri, 19 May 2023 13:29:34 -0400 Subject: [PATCH] Deprecating py35 and py36 --- .github/workflows/python-tests.yml | 2 +- tox.ini | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index b70a833..ec24c5d 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index ac5df31..a0efb60 100644 --- a/tox.ini +++ b/tox.ini @@ -1,15 +1,14 @@ [tox] -envlist = py27,py35,py36,py37,py38,py39,py310 +envlist = py27,py37,py38,py39,py310,py311 [gh-actions] python = 2.7: py27 - 3.5: py35 - 3.6: py36 3.7: py37 3.8: py38 3.9: py39 3.10: py310 + 3.10: py311 [testenv] deps =