Skip to content

Commit

Permalink
Add Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dofuuz committed Aug 16, 2024
1 parent cdaad86 commit 9afc0b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
submodules: true

- name: Build wheels
uses: pypa/cibuildwheel@v2.18
uses: pypa/cibuildwheel@v2.20
env:
# Skip builds(save time / avoid build error)
CIBW_SKIP: "pp* *-musllinux_* *_i686 *-win32"
Expand All @@ -53,7 +53,7 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.18
uses: pypa/cibuildwheel@v2.20
env:
CIBW_ARCHS_LINUX: aarch64
CIBW_BUILD: cp*-manylinux_aarch64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy3.9"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev", "pypy3.9", "pypy3.10"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

Expand Down
6 changes: 2 additions & 4 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ pip wheel -v .
```

### (Alternative method) Build using system libsoxr
libsoxr should be installed before building.
(e.g. `sudo apt install libsoxr-dev`)
libsoxr should be installed before building. (e.g. `sudo apt install libsoxr-dev`)
```
export CMAKE_ARGS="-DUSE_SYSTEM_LIBSOXR=ON"
pip wheel -v .
pip wheel -v . --config-settings=cmake.define.USE_SYSTEM_LIBSOXR=ON
```
It will link libsoxr dynamically and won't bundle libsoxr in the wheel package.

Expand Down

0 comments on commit 9afc0b5

Please sign in to comment.