1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 05:34:15 +01:00

cibuild: pip v24+ they changed the sdist filename

older versions it was with dash now its underscore. this have been an
issue since v4.72.
This commit is contained in:
Johan Andersson 2024-05-29 01:28:33 +02:00
parent 2e08c35c3c
commit ca98e62698

View File

@ -89,7 +89,7 @@ def aws_upload():
def pypi_upload():
logger.info("Uploading to pypi")
sdist = glob.glob("dist/svtplay-dl-*.tar.gz")
sdist = glob.glob("dist/svtplay_dl-*.tar.gz")
if sdist:
subprocess.check_call(["twine", "upload", sdist[0]])
else: