do not use f-strings in setup.py

These are not supported in <Python 3.6 version of the cpython.
This commit is contained in:
Akash Mahanty 2022-01-25 10:34:46 +05:30 committed by GitHub
parent 552967487e
commit 8510210e94
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__"],