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:
parent
552967487e
commit
8510210e94
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ as f:
|
|||||||
|
|
||||||
version = str(about["__version__"])
|
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(
|
setup(
|
||||||
name=about["__title__"],
|
name=about["__title__"],
|
||||||
|
Loading…
Reference in New Issue
Block a user