Skip to content

Commit

Permalink
Merge pull request #527 from pythonspeed/524-python-313-support
Browse files Browse the repository at this point in the history
Python 3.13 support
  • Loading branch information
itamarst authored Nov 4, 2024
2 parents 9cab84f + 2331543 commit ba009c5
Show file tree
Hide file tree
Showing 9 changed files with 269 additions and 392 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: "${{ matrix.os }}: Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-20.04", "macos-latest"]

runs-on: "${{ matrix.os }}"
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
env:
MACOSX_DEPLOYMENT_TARGET: "11"
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_SKIP: "cp37-macosx_arm64 cp36* cp37* cp38* cp39* cp313* pp*"
CIBW_SKIP: "cp37-macosx_arm64 cp36* cp37* cp38* cp39* pp*"
CIBW_BEFORE_BUILD: "touch filpreload/src/_filpreload.c" # force rebuild of Python code with new interpreter
CIBW_TEST_COMMAND: python -m filprofiler run {project}/benchmarks/pystone.py
with:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
CIBW_BEFORE_ALL_LINUX: "yum install -y lld && curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y"
CIBW_BEFORE_BUILD: "touch filpreload/src/_filpreload.c" # force rebuild of Python code with new interpreter
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"'
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* cp37-* cp38-* cp313-* pp* *-musllinux*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-musllinux*"
CIBW_TEST_COMMAND: python -m filprofiler run {project}/benchmarks/pystone.py
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release notes

## 2024.11.0 (2024-11-03)
## 2024.11.2 (2024-11-03)

### Changes

* Added support for Python 3.13.

## 2024.11.1 (2024-11-03)

### Regressions

Expand Down
Loading

0 comments on commit ba009c5

Please sign in to comment.