From 7d451d0141e0a95c09ed5ae265fdc5d859b77901 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Wed, 10 Jan 2024 00:04:41 -0800 Subject: [PATCH] Add support and testing for Python 3.12 Thanks @ericwb for the PR! --- .github/workflows/ci.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40cee41..6dadf63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.10', '3.9', '3.8', '3.7'] + python-version: ['3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 4fcf2f5..6ef37f9 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules'