forked from scikit-learn-contrib/scikit-learn-extra
-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (63 loc) · 2.06 KB
/
build-wheels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: build_wheels
on: [push, pull_request]
jobs:
build_wheels:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==2.21.3
- name: Build wheels
env:
# We only build for Python 3.6+. On Linux manylinux2010 is used.
# Skipping pypy wheels for now since scipy & scikit-learn haven't build them yet.
# Skip python3.11 for 32bit.
CIBW_SKIP: "pp* *-win32 *-manylinux_i686 *musllinux* *cp36* *cp37*"
CIBW_TEST_REQUIRES: "pytest pandas scikit-learn"
CIBW_TEST_COMMAND: "pytest --pyargs sklearn_extra"
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
build_sdist:
name: sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'
- name: Install dependencies
run: pip install setuptools cython numpy
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
# upload_pypi:
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# # upload to PyPI on every tag starting with 'v'
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
# steps:
# - uses: actions/download-artifact@v2
# with:
# name: artifact
# path: dist
# - uses: pypa/gh-action-pypi-publish@master
# with:
# user: __token__
# password: ${{ secrets.pypi_password }}
# # To test:
# repository_url: https://test.pypi.org/legacy/