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

Commit

Permalink
Merge pull request #143 from poliastro/py312
Browse files Browse the repository at this point in the history
Support Python 3.12
  • Loading branch information
astrojuanlu authored Jun 28, 2024
2 parents 0388757 + 1a1a364 commit 2113c8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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

0 comments on commit 2113c8d

Please sign in to comment.