From 77eda3e48f6edb1a566bcf21b30c9946d3643d07 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Fri, 9 Feb 2024 09:11:53 +0100 Subject: [PATCH] test on python 3.12 (#76) --- .github/workflows/ci.yaml | 4 ++-- setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c3d4eab..3f575fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.9", "3.11"] + python-version: ["3.7", "3.9", "3.11", "3.12"] os: [ "ubuntu-latest"] steps: @@ -51,7 +51,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v4 diff --git a/setup.cfg b/setup.cfg index a38c24d..97909f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,6 +19,7 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 [options] packages = find: diff --git a/tox.ini b/tox.ini index 1d339b9..3f36a35 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # content of: tox.ini , put in same dir as setup.py [tox] -envlist = py37,py39,py311 +envlist = py37,py39,py311,py312 [testenv] # install pytest in the virtualenv where commands will be executed