From f8abda69014d84f161051ab1f3392912d1ebd4cf Mon Sep 17 00:00:00 2001 From: Felix Oesterle Date: Wed, 23 Apr 2025 13:28:50 +0200 Subject: [PATCH] chore(release): add support for `python 3.13` --- .github/workflows/releaseWithManylinux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releaseWithManylinux.yml b/.github/workflows/releaseWithManylinux.yml index 8d2d5baf1..0f6765c4c 100644 --- a/.github/workflows/releaseWithManylinux.yml +++ b/.github/workflows/releaseWithManylinux.yml @@ -32,7 +32,7 @@ jobs: - name: build manylinux wheels uses: RalfG/python-wheels-manylinux-build@v0.7.1 with: - python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312' + python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313' build-requirements: 'cython numpy' - name: Publish wheels to PyPI run: | @@ -53,7 +53,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -83,7 +83,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest] - python-version: ['3.8','3.9','3.10','3.11','3.12'] + python-version: [ '3.8','3.9','3.10','3.11','3.12','3.13' ] steps: - uses: actions/checkout@v4 with: