1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00

no need to run setup as a superuser

This commit is contained in:
Joel Bender 2015-08-14 21:08:31 -04:00
parent a811aad58f
commit 4b163d27f0

View File

@ -1,8 +1,10 @@
#!/bin/bash
python setup.py sdist
for ver in 2.7 3.4; do
sudo python$ver setup.py bdist_egg
sudo python$ver setup.py bdist_wheel
python$ver setup.py bdist_egg
python$ver setup.py bdist_wheel
done
twine upload dist/*