Skip to content

Commit 7dd10a9

Browse files
committed
Minor fixes
1 parent 0cd3846 commit 7dd10a9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/manylinux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
# python-abi: [cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312, cp313-cp313, cp314-cp314]
23-
python-abi: [cp314-cp314]
22+
python-abi: [cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312, cp313-cp313, cp314-cp314]
2423
image:
2524
- manylinux2014_x86_64
2625
- manylinux_2_28_x86_64

.github/workflows/sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install build dependencies
2727
run: |
28-
pip install --upgrade pip setuptools wheel
28+
pip install --upgrade pip setuptools wheel 'setuptools_scm>=8'
2929
3030
- name: Package source dist
3131
run: |

.github/workflows/wheels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,17 @@ jobs:
7575
# From https://iscinumpy.dev/post/cibuildwheel-2-10-0/#only-210
7676
name: Generate wheels matrix
7777
runs-on: ubuntu-24.04
78+
7879
outputs:
7980
include: ${{ steps.set-matrix.outputs.include }}
81+
8082
steps:
8183
- uses: actions/checkout@v5.0.0
84+
8285
- name: Install cibuildwheel
8386
# N.B. Keep cibuildwheel version pin consistent with "build_wheels" job below.
8487
run: pipx install cibuildwheel==3.3
88+
8589
- id: set-matrix
8690
run: |
8791
MATRIX=$(

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ skip = [
158158
]
159159
test-command = "pytest -v --color=yes {package}/tests"
160160
before-test = "pip install -r requirements-test.txt"
161-
# test-skip = "*-macosx_arm64"
162161

163162
[tool.cibuildwheel.linux]
164163
archs = ["x86_64", "aarch64", "riscv64"]

0 commit comments

Comments
 (0)