From 174232cd613427013808cf1cc357df9153efaf1d Mon Sep 17 00:00:00 2001 From: Marcin Kaszynski Date: Tue, 17 Oct 2023 14:46:53 -0400 Subject: [PATCH] Add Python 3.12. --- .github/workflows/ci.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de4a82f..0b7fd94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7","3.8","3.9","3.10","3.11"] + python-version: ["3.7","3.8","3.9","3.10","3.11","3.12"] steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index e561eba..e5355d9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox:tox] -envlist = py{3.7,3.8,3.9,3.10,3.11} +envlist = py{3.7,3.8,3.9,3.10,3.11,3.12} [flake8] exclude = .tox,./build @@ -13,5 +13,6 @@ basepython = py3.9: python3.9 py3.10: python3.10 py3.11: python3.11 + py3.12: python3.12 commands = pytest deps = -rrequirements.txt