Skip to content

Commit c10a458

Browse files
committed
ci: upgrade cibuildwheel
1 parent 8276cc9 commit c10a458

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131

3232
- name: Build wheels
33-
uses: pypa/cibuildwheel@v2.21.3
33+
uses: pypa/cibuildwheel@v2.23.2
3434
env:
3535
CIBW_ARCHS_MACOS: "x86_64 arm64"
3636
CIBW_ENVIRONMENT: PIP_EXTRA_INDEX_URL=https://download.pytorch.org/whl/cpu
@@ -78,9 +78,9 @@ jobs:
7878
Documentation:
7979
runs-on: ubuntu-22.04
8080
steps:
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282

83-
- uses: actions/setup-python@v4
83+
- uses: actions/setup-python@v5
8484
with:
8585
python-version: "3.9"
8686
cache: 'pip'

.github/workflows/test-build.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ jobs:
2121
os: [ubuntu-22.04, windows-latest, macos-latest]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525

2626
- name: Build wheels
27-
# 2.4 is too low (can't build for macos, 2.16 is too high (OpenSSL issues)
28-
uses: pypa/[email protected]
27+
uses: pypa/[email protected]
2928
env:
3029
CIBW_ARCHS_MACOS: "x86_64 arm64"
3130
CIBW_ENVIRONMENT: PIP_EXTRA_INDEX_URL=https://download.pytorch.org/whl/cpu
@@ -35,7 +34,7 @@ jobs:
3534
name: Build source distribution
3635
runs-on: ubuntu-22.04
3736
steps:
38-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3938

4039
- name: Build sdist
4140
run: pipx run build --sdist

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ skip = [
454454
"*-musllinux*", # Skip slow Linux
455455
"*-manylinux_ppc64le", # Skip slow Linux
456456
"*-manylinux_s390x", # Skip slow Linux
457-
"*p313-*", # skip 3.13 for now (spacy build issue): users will have to build it on their own
457+
# "*p313-*", # skip 3.13 for now (spacy build issue): users will have to build it on their own
458458
]
459459

460460
before-test = 'pip install pytest "urllib3<2"'

0 commit comments

Comments
 (0)