Build attach_linux_*.so for manylinux1 using the official containers from PyPA.

This commit is contained in:
Pavel Minaev 2021-08-19 18:01:51 -07:00
parent 2a2c371d98
commit d9ca878cd2
4 changed files with 13 additions and 0 deletions

View file

@ -1,6 +1,7 @@
@echo off
pushd %~dp0
rd /s /q build dist
del /s /q *.pyc
del /s /q *.pyo
for /d /r %%i in (__pycache__.*) do rd "%%i"
@ -8,8 +9,10 @@ popd
pushd %~dp0\src
del /s /q *.pyd
del /s /q *-linux-gnu.so
popd
pushd %~dp0\tests
del /s /q *.pyd
del /s /q *-linux-gnu.so
popd