Skip to content

Commit 2326904

Browse files
chore: Update Python version support to include 3.12
1 parent 12ee1f0 commit 2326904

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/wheels.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
env:
2121
# Specify which Python versions to build wheels
2222
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
23-
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*"
24-
# Skip 32 bit architectures, musllinux, and i686, and macOS x86_64 wheels for CP3.8 -- CP3.11
25-
CIBW_SKIP: "*-win32 *-musllinux_x86_64 *_i686 cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64"
23+
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"
24+
# Skip 32 bit architectures, musllinux, and i686, and macOS x86_64 wheels for CP3.8 -- CP3.12
25+
CIBW_SKIP: "*-win32 *-musllinux_x86_64 *_i686 cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64 cp312-macosx_x86_64"
2626
CIBW_BEFORE_BUILD_WINDOWS: sed -i $'s/\r$//' README.rst && python -m pip install delvewheel
2727
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -vv -w {dest_dir} {wheel}"
2828
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Dependencies
3434

3535
``pyflagser`` requires:
3636

37-
- Python (>= 3.7)
37+
- Python (>= 3.8)
3838
- NumPy (>= 1.17.0)
3939
- SciPy (>= 0.17.0)
4040

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949
'Programming Language :: Python :: 3.8',
5050
'Programming Language :: Python :: 3.9',
5151
'Programming Language :: Python :: 3.10',
52-
'Programming Language :: Python :: 3.11']
52+
'Programming Language :: Python :: 3.11',
53+
'Programming Language :: Python :: 3.12']
5354
KEYWORDS = 'topological data analysis, persistent ' + \
5455
'homology, directed flags complex, persistence diagrams'
5556
INSTALL_REQUIRES = requirements

0 commit comments

Comments
 (0)