File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ build_dll x86_64-w64-mingw32
29
29
# Not sure why it ended-up being a -2.dll instead of -0.dll: Researching
30
30
mv .libs/libsecp256k1-? .dll ../clean/coincurve/libsecp256k1.dll
31
31
cd ../clean
32
- python setup.py bdist_wheel --plat-name=win_amd64
32
+ python -m build --wheel -C= plat-name=win_amd64
33
33
rm coincurve/libsecp256k1.dll
34
34
35
35
cd ../32bit
36
36
build_dll i686-w64-mingw32
37
37
# Not sure why it ended-up being a -2.dll instead of -0.dll: Researching
38
38
mv .libs/libsecp256k1-? .dll ../clean/coincurve/libsecp256k1.dll
39
39
cd ../clean
40
- python setup.py bdist_wheel --plat-name=win32
40
+ python -m build --wheel -C= plat-name=win32
41
41
42
42
mv dist/* ../coincurve/dist/
43
43
cd ../coincurve
Original file line number Diff line number Diff line change @@ -141,10 +141,10 @@ jobs:
141
141
- uses : actions/checkout@v4
142
142
143
143
- name : Install build dependencies
144
- run : python -m pip install --upgrade cffi
144
+ run : python -m pip install build
145
145
146
146
- name : Build source distribution
147
- run : python setup.py sdist
147
+ run : python -m build -- sdist
148
148
149
149
- name : Build Windows wheels
150
150
run : ./.github/scripts/build-windows-wheels.sh
You can’t perform that action at this time.
0 commit comments