From ac193b102a04878df5be2d76b28154e10350c34c Mon Sep 17 00:00:00 2001 From: elisalle Date: Tue, 28 Jan 2025 17:54:10 +0100 Subject: [PATCH] do not build for python 3.13 --- .github/workflows/release.yml | 2 +- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3aff08ea..6fd574d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: uses: pypa/cibuildwheel@v2.22.0 # to supply options, put them in 'env', like: env: - CIBW_SKIP: "pp* *musllinux* cp312" # skips pypy, musllinux and python3.12 + CIBW_SKIP: "pp* *musllinux* cp313*" # skips pypy, musllinux and python3.13 CIBW_ARCHS: auto64 # only 64-bit (convincing CMAKE of 32-bit is a TODO) CIBW_ENVIRONMENT_MACOS: FC=gfortran-12 diff --git a/pyproject.toml b/pyproject.toml index 1e0f7c56..c6b900f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,6 @@ requires = [ "numpy==1.24.2; python_version=='3.11'", # do not pin numpy on future versions of python to avoid incompatible numpy and python versions "numpy==1.26.*; python_version=='3.12'", - "numpy==2.2.*; python_version=='3.13'", "ninja; platform_system!='Windows'" ] build-backend = "setuptools.build_meta"