Skip to content

Commit

Permalink
Support for Python 3.12 (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
SR4ven authored Dec 11, 2023
1 parent c984d4b commit dc9fc92
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

Upcomming
---------
Features
^^^^^^^^
- Added Python 3.12 compatibility.

Fixes
^^^^^

v0.4.2
------
Features
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit dc9fc92

Please sign in to comment.