mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
Fixes to add python 3.6 compatibility
This commit is contained in:
4
setup.py
4
setup.py
@ -58,6 +58,8 @@ install_requires = [
|
||||
"protobuf>=3.10.0,<4.0.0",
|
||||
"coincurve>=10.0.0,<11.0.0",
|
||||
"pynacl==1.3.0",
|
||||
"dataclasses>=0.7, <1;python_version<'3.7'",
|
||||
"async_generator==1.10;python_version<'3.7'",
|
||||
]
|
||||
|
||||
|
||||
@ -80,7 +82,7 @@ setup(
|
||||
url="https://github.com/libp2p/py-libp2p",
|
||||
include_package_data=True,
|
||||
install_requires=install_requires,
|
||||
python_requires=">=3.7,<4",
|
||||
python_requires=">=3.6,<4",
|
||||
extras_require=extras_require,
|
||||
py_modules=["libp2p"],
|
||||
license="MIT/APACHE2.0",
|
||||
|
||||
Reference in New Issue
Block a user