From 430ef227b6e8fbd8fffa83fde7549438e37576c3 Mon Sep 17 00:00:00 2001 From: Perceval Wajsburt Date: Thu, 10 Oct 2024 18:49:28 +0200 Subject: [PATCH] ci: skip py313 wheel --- .github/workflows/release.yml | 1 - pyproject.toml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd9451f51..65de04d5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,7 +63,6 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact pattern: cibw-* path: dist merge-multiple: true diff --git a/pyproject.toml b/pyproject.toml index 9f2bacf64..a91115677 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -417,6 +417,7 @@ skip = [ "*-musllinux*", # Skip slow Linux "*-manylinux_ppc64le", # Skip slow Linux "*-manylinux_s390x", # Skip slow Linux + "*p313-*", # skip 3.13 for now (spacy build issue): users will have to build it on their own ] before-test = 'pip install pytest "urllib3<2"'