Skip to content

Commit fb84212

Browse files
committed
Wheelhouse V5
1 parent 8e598ef commit fb84212

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,24 @@ on:
88

99

1010
jobs:
11+
12+
build_sdist:
13+
name: Build source distribution
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Build sdist
21+
run: pipx run build --sdist
22+
1123
build_wheels:
1224
name: Build wheels on ${{ matrix.os }}
1325
runs-on: ${{ matrix.os }}
1426
strategy:
1527
matrix:
16-
os: [macos-latest]
28+
os: [ubuntu-latest]
1729

1830
steps:
1931
- uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ def readme():
8080

8181

8282
parser = argparse.ArgumentParser()
83-
parser.add_argument('--nopyx', dest='nopyx', action='store_true',
84-
help='Whether the pyx files shall be considered at all.')
83+
parser.add_argument('--nopyx', dest='nopyx', action='store_true', help='Whether the pyx files shall be considered at all.')
8584
parser.add_argument('--nocython', dest='nocython', action='store_true', help='Whether pyx files shall be cythonized.')
8685
parser.add_argument('--nolibs', dest='nolibs', action='store_true', help='Whether the libraries should be compiled.')
8786
args, _ = parser.parse_known_args()

0 commit comments

Comments
 (0)