From 6fda3549281d002801598f9b39fc8584da07d3a2 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 21 Mar 2024 18:34:38 -0400 Subject: [PATCH 1/2] Add python 3.12 classifier and testing --- .github/workflows/ci.yaml | 2 ++ pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d2528ae..fbfb1da 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,6 +25,8 @@ jobs: toxenv: py310 - version: "3.11" toxenv: py311 + - version: "3.12" + toxenv: py312 steps: - name: Checkout uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 619cb60..af55b61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython" ] diff --git a/tox.ini b/tox.ini index f2da564..56b9734 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{7-11}, static, static-tests, security +envlist = py3{7-12}, static, static-tests, security isolated_build = true skip_missing_interpreters = true From 60462c78b600288c8feb9a495748a683909c10f2 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 21 Mar 2024 18:37:36 -0400 Subject: [PATCH 2/2] Update CI poetry version --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fbfb1da..b192e23 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ on: push: branches: ["devel"] env: - POETRY_VERSION: 1.4.1 + POETRY_VERSION: 1.5.1 jobs: Test: name: Python ${{ matrix.python.version }}