From 68b2cbb12521f7f3d47f5e3b296ceceb98805c64 Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 15 Apr 2021 11:55:37 -0600 Subject: [PATCH] drop python 3.5, 3.6 .. add pythons up to 3.10 --- .github/workflows/test.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 236e2f9..f281ed2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index 537a2d5..5aa9d20 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = {py35,py36,py37,pypy} +envlist = {py37,py38,py39,py310,pypy} skip_missing_interpreters = True minversion = 2.4.0