We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 832dfc1 commit f19d98aCopy full SHA for f19d98a
.github/workflows/build-wheels.yml
@@ -32,30 +32,15 @@ jobs:
32
CIBW_TEST_COMMAND: "pytest --pyargs sklearn_extra"
33
run: |
34
python -m cibuildwheel --output-dir wheelhouse
35
- - uses: actions/upload-artifact@v4
36
- with:
37
- path: ./wheelhouse/*.whl
38
-
39
- build_sdist:
40
- name: sdist
41
- runs-on: ubuntu-latest
42
- steps:
43
- - uses: actions/checkout@v2
44
45
- - uses: actions/setup-python@v2
46
- name: Install Python
47
48
- python-version: '3.10'
49
50
- - name: Install dependencies
51
- run: pip install setuptools cython numpy
52
53
- name: Build sdist
54
run: python setup.py sdist
55
56
- uses: actions/upload-artifact@v4
57
with:
58
- path: dist/*.tar.gz
+ path: |
+ ./wheelhouse/*.whl
+ ./dist/*.tar.gz
59
60
# upload_pypi:
61
# needs: [build_wheels, build_sdist]
0 commit comments