Skip to content

Commit f531eae

Browse files
committed
3.13
1 parent 748fa4b commit f531eae

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: "${{ matrix.os }}: Python ${{ matrix.python-version }}"
2424
strategy:
2525
matrix:
26-
python-version: ["3.9", "3.10", "3.11", "3.12"]
26+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2727
os: ["ubuntu-20.04", "macos-latest"]
2828

2929
runs-on: "${{ matrix.os }}"
@@ -75,7 +75,7 @@ jobs:
7575
make test
7676
- name: "Build macOS wheels"
7777
if: startsWith(matrix.os, 'mac') && (matrix.python-version == '3.9')
78-
uses: pypa/cibuildwheel@v2.19.2
78+
uses: pypa/cibuildwheel@v2.21.3
7979
env:
8080
MACOSX_DEPLOYMENT_TARGET: "11"
8181
CIBW_ARCHS_MACOS: "x86_64 arm64"
@@ -149,7 +149,7 @@ jobs:
149149
CIBW_BEFORE_ALL_LINUX: "yum install -y lld; curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y"
150150
CIBW_BEFORE_BUILD: "touch filpreload/src/_filpreload.c" # force rebuild of Python code with new interpreter
151151
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"'
152-
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* cp37-* pp* *-musllinux*"
152+
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* cp37-* cp38-* pp* *-musllinux*"
153153
CIBW_TEST_COMMAND: python -m filprofiler run {project}/benchmarks/pystone.py
154154
steps:
155155
- uses: actions/checkout@v3
@@ -162,7 +162,7 @@ jobs:
162162
with:
163163
platforms: arm64
164164
- name: Build wheels
165-
uses: pypa/cibuildwheel@v2.19.2
165+
uses: pypa/cibuildwheel@v2.21.3
166166
with:
167167
output-dir: dist
168168
- uses: actions/upload-artifact@v3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def read(path):
4949
"Programming Language :: Python :: 3.10",
5050
"Programming Language :: Python :: 3.11",
5151
"Programming Language :: Python :: 3.12",
52+
"Programming Language :: Python :: 3.13",
5253
"Programming Language :: Python :: Implementation :: CPython",
5354
],
5455
python_requires=">=3.9",

0 commit comments

Comments
 (0)