Merge pull request #115 from akamhy/akamhy-patch-1

do not use f-strings in setup.py
This commit is contained in:
Akash Mahanty 2022-01-25 10:42:27 +05:30 committed by GitHub
commit 15c7244a22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ as f:
version = str(about["__version__"])
download_url = f"https://github.com/akamhy/waybackpy/archive/{version}.tar.gz"
download_url = "https://github.com/akamhy/waybackpy/archive/{version}.tar.gz".format(version=version)
setup(
name=about["__title__"],