From d98b0c034cdd804320f821ba2e0710a8054780b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Sun, 4 Aug 2024 12:06:42 +0200 Subject: [PATCH] WHL: enable cp313 wheels --- .github/workflows/cd.yml | 10 +++++----- pyproject.toml | 5 ++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 719c15c..10767c5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,10 +15,10 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 - - windows-2019 + - ubuntu-latest + - windows-latest - macos-13 # x86_64 - - macos-14 # amr64 + - macos-latest # arm64 fail-fast: false steps: @@ -27,10 +27,10 @@ jobs: - uses: yezz123/setup-uv@v4 with: - uv-version: 0.2.18 + uv-version: 0.2.33 - name: Build wheels for CPython - uses: pypa/cibuildwheel@v2.19.2 + uses: pypa/cibuildwheel@v2.20.0 with: output-dir: dist diff --git a/pyproject.toml b/pyproject.toml index fb23a9e..99c61e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ requires = [ "setuptools>=61.2", "Cython>=3.0", - "numpy>=2.0.0rc1", + "numpy>=2.0.0", ] build-backend = "setuptools.build_meta" @@ -122,10 +122,9 @@ filterwarnings = [ ] [tool.cibuildwheel] -build = "cp311-* cp312-*" +build = "cp311-* cp312-* cp313-*" build-frontend = "build[uv]" build-verbosity = 1 -test-skip = "*-musllinux*" test-command = [ "uv pip install -r {project}/requirements/tests.txt", "pytest --color=yes -ra {project}",