Skip to content

Commit

Permalink
Add support for Python 3.12 and 3.13. (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp authored Oct 2, 2024
1 parent 22109bc commit ad2a32c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
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", "3.13"]

steps:
- uses: actions/checkout@v3
Expand All @@ -33,6 +33,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Show environment
run: |
Expand Down
1 change: 1 addition & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ v8.3 (unreleased)

Lab
^^^
* Add support for Python 3.12 and 3.13 (Jendrik Seipp).
* Open ``run.log`` and ``run.err`` in binary mode to avoid decoding byte strings (Jendrik Seipp).

Downward Lab
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
],
install_requires=[
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py310, py311, downward, ff, singularity, style, docs # Skip py39 since it chokes on distutils.
envlist = py37, py38, py310, py311, py312, py313, downward, ff, singularity, style, docs # Skip py39 since it chokes on distutils.
basepython = python3
skip_missing_interpreters = true

Expand Down

0 comments on commit ad2a32c

Please sign in to comment.