Skip to content

Commit f19d98a

Browse files
try fix windows
1 parent 832dfc1 commit f19d98a

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

.github/workflows/build-wheels.yml

+3-18
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,15 @@ jobs:
3232
CIBW_TEST_COMMAND: "pytest --pyargs sklearn_extra"
3333
run: |
3434
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-
with:
48-
python-version: '3.10'
49-
50-
- name: Install dependencies
51-
run: pip install setuptools cython numpy
5235
5336
- name: Build sdist
5437
run: python setup.py sdist
5538

5639
- uses: actions/upload-artifact@v4
5740
with:
58-
path: dist/*.tar.gz
41+
path: |
42+
./wheelhouse/*.whl
43+
./dist/*.tar.gz
5944
6045
# upload_pypi:
6146
# needs: [build_wheels, build_sdist]

0 commit comments

Comments
 (0)