Commit b584462 1 parent ae6774e commit b584462 Copy full SHA for b584462
File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 28
28
- name : Install cibuildwheel
29
29
run : python -m pip install cibuildwheel=="${{ env.MLC_CIBW_VERSION }}"
30
30
- name : Build wheels
31
- run : rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
31
+ run : python -m cibuildwheel --output-dir wheelhouse
32
32
env :
33
33
CIBW_BUILD : ${{ env.MLC_CIBW_WIN_BUILD }}
34
34
- name : Show package contents
51
51
- name : Install cibuildwheel
52
52
run : python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
53
53
- name : Build wheels
54
- run : rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
54
+ run : python -m cibuildwheel --output-dir wheelhouse
55
55
env :
56
56
CIBW_BUILD : ${{ env.MLC_CIBW_MAC_BUILD }}
57
57
- name : Show package contents
74
74
- name : Install cibuildwheel
75
75
run : python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
76
76
- name : Build wheels
77
- run : rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
77
+ run : python -m cibuildwheel --output-dir wheelhouse
78
78
env :
79
79
CIBW_BUILD : ${{ env.MLC_CIBW_MAC_X86_BUILD }}
80
80
- name : Show package contents
97
97
- name : Install cibuildwheel
98
98
run : python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
99
99
- name : Build wheels
100
- run : rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
100
+ run : python -m cibuildwheel --output-dir wheelhouse
101
101
env :
102
102
CIBW_BUILD : ${{ env.MLC_CIBW_LINUX_BUILD }}
103
103
- name : Show package contents
Original file line number Diff line number Diff line change 3
3
build
4
4
build-cpp-tests
5
5
python /mlc /_version.py
6
+ wheelhouse /
7
+ uv.lock
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ build-backend = "scikit_build_core.build"
43
43
44
44
[tool .setuptools_scm ]
45
45
version_file = " python/mlc/_version.py"
46
+ write_to = " python/mlc/_version.py"
46
47
47
48
[tool .scikit-build ]
48
49
metadata.version.provider = " scikit_build_core.metadata.setuptools_scm"
@@ -54,6 +55,7 @@ wheel.license-files = []
54
55
wheel.install-dir = " mlc"
55
56
install.strip = false
56
57
build-dir = " build-wheels/{wheel_tag}-{build_type}"
58
+ sdist.include = [" python/mlc/_version.py" ]
57
59
58
60
[tool .scikit-build .wheel .packages ]
59
61
"mlc" = " python/mlc"
You can’t perform that action at this time.
0 commit comments