From f2a927cebef158a763121867faf5d5fb2419aeb7 Mon Sep 17 00:00:00 2001 From: Sam Clements Date: Sat, 2 Dec 2023 16:30:12 +0000 Subject: [PATCH] Drop tests on EOL Python versions, add tests on 3.11 and 3.12 --- .github/workflows/ci.yml | 6 +++--- tox.ini | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57c8e62..455a92e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: python-version: - - "3.10" + - "3.12" steps: - uses: "actions/checkout@master" - name: "🐍 Set up Python ${{ matrix.python-version }}" @@ -30,11 +30,11 @@ jobs: strategy: matrix: python-version: - - "3.6" - - "3.7" - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" dependencies: - "" - "colorama" diff --git a/tox.ini b/tox.ini index 34dece3..db99cc7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = black,flake8,mypy,py36,py37,py38,py39,py310 +envlist = black,flake8,mypy,py38,py39,py310,py311,py312 [testenv] deps = pytest