Skip to content

Commit

Permalink
Bump version for Python 3.13.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
dofuuz committed Oct 9, 2024
1 parent d2154f0 commit 57239f8
Show file tree
Hide file tree
Showing 3 changed files with 11 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.20
uses: pypa/cibuildwheel@v2.21
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.20
uses: pypa/cibuildwheel@v2.21
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", "3.13-dev", "pypy3.9", "pypy3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

Expand Down
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
[build-system]
requires = [
"scikit-build-core >=0.9.0",
"scikit-build-core >=0.10",
"nanobind >=2",
"setuptools>=45",
"setuptools_scm[toml]>=6.2",

"setuptools >=45",
"setuptools_scm[toml] >=6.2",

"typing-extensions; python_version < '3.11'",

# No, it doesn't require NumPy on build-time.
]
build-backend = "scikit_build_core.build"

Expand Down Expand Up @@ -54,7 +58,7 @@ Source = "https://github.com/dofuuz/python-soxr"

[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.9"
minimum-version = "build-system.requires"

# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
Expand Down

0 comments on commit 57239f8

Please sign in to comment.