From ecd48232b545edb6b8d16cf7437837dc7b23e83f Mon Sep 17 00:00:00 2001 From: Maximilian Lindner <46794237+SR4ven@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:11:46 +0000 Subject: [PATCH] Support for Python 3.12 --- .github/ISSUE_TEMPLATE/2_bug_report.yml | 2 +- .github/workflows/test.yml | 2 +- CHANGELOG.rst | 9 +++++++++ tox.ini | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/2_bug_report.yml b/.github/ISSUE_TEMPLATE/2_bug_report.yml index 3f63c240..aafa22ac 100644 --- a/.github/ISSUE_TEMPLATE/2_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/2_bug_report.yml @@ -61,11 +61,11 @@ body: label: Python version description: What Python version are you running? options: + - "3.12" - "3.11" - "3.10" - "3.9" - "3.8" - - "3.7" - "Other" validations: required: false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98afc01e..a294fc44 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - 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 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cf0a5929..029bae17 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +Upcomming +--------- +Features +^^^^^^^^ +- Added Python 3.12 compatibility. + +Fixes +^^^^^ + v0.4.2 ------ Features diff --git a/tox.ini b/tox.ini index 89d9d397..faf9be29 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ minversion=2.0 isolated_build = true skip_missing_interpreters = True -envlist = py{38,39,310,311}-{Linux,Windows,macOS}, docs, lint +envlist = py{38,39,310,311,312}-{Linux,Windows,macOS}, docs, lint [testenv] platform =