From 58d65d062864b10c576814d0db99e1fc34a4cdde Mon Sep 17 00:00:00 2001 From: Eleftherios Zisis Date: Mon, 5 Feb 2024 15:43:11 +0100 Subject: [PATCH] Add testing for python3.12 (#1098) * Test for python3.12 --- .github/workflows/run-tox.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tox.yml b/.github/workflows/run-tox.yml index 9128e131..0f0bae1a 100644 --- a/.github/workflows/run-tox.yml +++ b/.github/workflows/run-tox.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 4550d8a4..e4e40293 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ envlist = docs coverage tutorial - py{38,39,310,311} + py{38,39,310,311,312} [testenv] deps = @@ -71,3 +71,4 @@ python = 3.9: py39, docs 3.10: py310, tutorial 3.11: py311 + 3.12: py312