]> gitweb @ CieloNegro.org - youtube-dl.git/blobdiff - devscripts/release.sh
Build and upload universal wheels to pypi
[youtube-dl.git] / devscripts / release.sh
index 323acf8cfa92cc7662c21fac44795790867901f4..45b080c121cbcd8f34a539c1aafebd0b142c9bb7 100755 (executable)
@@ -14,9 +14,9 @@
 
 set -e
 
-skip_tests=false
-if [ "$1" = '--skip-test' ]; then
-    skip_tests=true
+skip_tests=true
+if [ "$1" = '--run-tests' ]; then
+    skip_tests=false
     shift
 fi
 
@@ -97,7 +97,7 @@ rm -rf build
 
 make pypi-files
 echo "Uploading to PyPi ..."
-python setup.py sdist upload
+python setup.py sdist bdist_wheel upload
 make clean
 
 /bin/echo -e "\n### DONE!"