1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

cibuild: only use python instead of python3

This commit is contained in:
Johan Andersson 2019-01-05 00:02:59 +01:00
parent 3ff3d0e06b
commit 5ddb0760e5

View File

@ -64,7 +64,7 @@ def build_docker():
def build_package():
logger.info("Building python package")
subprocess.check_output([
"python3", "setup.py", "-q", "sdist", "bdist_wheel"
"python", "setup.py", "-q", "sdist", "bdist_wheel"
])