Browse Source

properly drop py2 for windows wheels (#82)

master
Ofek Lev 3 years ago
committed by GitHub
parent
commit
823fc3d264
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/scripts/build-windows-wheels.sh

4
.github/scripts/build-windows-wheels.sh

@ -19,14 +19,14 @@ cd 64bit
build_dll x86_64-w64-mingw32
mv .libs/libsecp256k1-0.dll ../clean/coincurve/libsecp256k1.dll
cd ../clean
python setup.py bdist_wheel --universal --plat-name=win_amd64
python setup.py bdist_wheel --plat-name=win_amd64
rm coincurve/libsecp256k1.dll
cd ../32bit
build_dll i686-w64-mingw32
mv .libs/libsecp256k1-0.dll ../clean/coincurve/libsecp256k1.dll
cd ../clean
python setup.py bdist_wheel --universal --plat-name=win32
python setup.py bdist_wheel --plat-name=win32
mv dist/* ../coincurve/dist/
cd ../coincurve

Loading…
Cancel
Save