Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Support Python 3.12 #143

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ select = [
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = quality, test, pypy, pypy3, py{37,38,39,310,311}
envlist = quality, test, pypy, pypy3, py{37,38,39,310,311,312}

[gh-actions]
python =
Expand All @@ -22,6 +22,7 @@ legacy_tox_ini = """
3.9: py39
3.10: py310
3.11: py311, quality, test, pypy, pypy3
3.12: py312

[testenv]
basepython =
Expand All @@ -32,6 +33,7 @@ legacy_tox_ini = """
py39: {env:PYTHON:python3.9}
py310: {env:PYTHON:python3.10}
py311: {env:PYTHON:python3.11}
py312: {env:PYTHON:python3.12}
{quality,reformat,test,coverage}: {env:PYTHON:python3}
setenv =
PYTHONUNBUFFERED = yes
Expand Down Expand Up @@ -92,6 +94,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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
Expand Down
Loading