File tree 5 files changed +30
-3
lines changed
5 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,29 @@ jobs:
38
38
CIBW_ENVIRONMENT_WINDOWS : CMAKE_GENERATOR="${{ matrix.cmake-generator }}"
39
39
CIBW_ARCHS_WINDOWS : ${{ matrix.cibw-arch }}
40
40
CIBW_ARCHS_LINUX : ${{ matrix.arch }}
41
- CIBW_SKIP : pp*
41
+ CIBW_SKIP : pp* *-musllinux_*
42
42
COMSPEC : C:\Program Files\PowerShell\7\pwsh.EXE
43
43
run : |
44
44
python -m cibuildwheel --output-dir wheelhouse python/
45
45
46
46
- uses : actions/upload-artifact@v2
47
47
with :
48
48
path : ./wheelhouse/*.whl
49
+
50
+ publish :
51
+ needs : wheels
52
+ name : Publish wheels to PyPI
53
+ runs-on : ubuntu-latest
54
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
55
+ steps :
56
+ - uses : actions/checkout@v2
57
+
58
+ - uses : actions/download-artifact@v2
59
+
60
+ - name : Publish wheels to PyPI
61
+
62
+ uses : pypa/gh-action-pypi-publish@release/v1
63
+ with :
64
+ user : __token__
65
+ password : ${{ secrets.PYPI_API_TOKEN }}
66
+ packages_dir : artifact
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ install:
45
45
setuptools-scm
46
46
pytest
47
47
pytest-runner
48
- scikit-build
48
+ scikit-build==0.11.0
49
49
50
50
before_build :
51
51
- IF DEFINED PYTHON SET LANG=%LANG% -DPYTHON_EXECUTABLE=%PYTHON%\python
Original file line number Diff line number Diff line change
1
+ # 1.9.9
2
+ * Packaging updates
3
+
4
+ # 1.9.8
5
+ * Packaging updates
6
+
1
7
# 1.9.7
2
8
* Packaging updates
3
9
Original file line number Diff line number Diff line change @@ -38,5 +38,8 @@ before-build = [
38
38
""" ,
39
39
]
40
40
41
+ [tool .cibuildwheel .linux ]
42
+ manylinux-x86_64-image = " manylinux2010"
43
+
41
44
[tool .cibuildwheel .macos ]
42
45
environment = { CXXFLAGS =" -L/usr/local/lib" }
Original file line number Diff line number Diff line change 1
1
[metadata]
2
- version = 1.9.7
2
+ version = 1.9.9
3
3
4
4
[aliases]
5
5
test =pytest
You can’t perform that action at this time.
0 commit comments