Skip to content

Commit 3cbd2c1

Browse files
committed
test: python 3.12/3.13
Problem: We need to support newer versions of Python. These have been disabled because I think the build will fail, but we need to test. Signed-off-by: vsoch <vsoch@users.noreply.github.com>
1 parent 52cf0a5 commit 3cbd2c1

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/scripts/requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ jsonschema
44
docutils
55
black
66
IPython
7+
setuptools

.github/scripts/setup.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ sudo apt-get install -y \
4343
python3-dev \
4444
python3-pip \
4545
python3-sphinx \
46+
python3-setuptools \
4647
libtool \
4748
git \
4849
build-essential \

.github/workflows/build-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python: ["3.8", "3.9", "3.10", "3.11"]
28+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2929
container:
3030
image: fluxrm/testenv:jammy
3131
steps:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ classifiers = [
2727
"Topic :: Software Development",
2828
"Topic :: Scientific/Engineering",
2929
"Operating System :: Unix",
30-
"Programming Language :: Python :: 3.6",
31-
"Programming Language :: Python :: 3.7",
3230
"Programming Language :: Python :: 3.8",
3331
"Programming Language :: Python :: 3.9",
3432
"Programming Language :: Python :: 3.10",
3533
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3636
]
3737

3838
# Corresponds to install_requires

0 commit comments

Comments
 (0)