mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
Use trio.lowlevel instead of trio.hazmat
Since trio 0.15.0, hazmat has been deprecated. trio-typing and mypy are bumped to support newer trio and each other.
This commit is contained in:
6
setup.py
6
setup.py
@ -14,11 +14,12 @@ extras_require = {
|
||||
"lint": [
|
||||
"flake8==3.7.9", # flake8 is not semver: it has added new warnings at minor releases
|
||||
"isort==4.3.21",
|
||||
"mypy==0.740", # mypy is not semver: it has added new warnings at minor releases
|
||||
"mypy==0.780", # mypy is not semver: it has added new warnings at minor releases
|
||||
"mypy-protobuf==1.15",
|
||||
"black==19.3b0",
|
||||
"flake8-bugbear>=19.8.0,<20",
|
||||
"docformatter>=1.3.1,<2",
|
||||
"trio-typing~=0.5.0",
|
||||
],
|
||||
"doc": [
|
||||
"Sphinx>=2.2.1,<3",
|
||||
@ -74,10 +75,9 @@ install_requires = [
|
||||
"pynacl==1.3.0",
|
||||
"dataclasses>=0.7, <1;python_version<'3.7'",
|
||||
"async_generator==1.10",
|
||||
"trio>=0.13.0",
|
||||
"trio>=0.15.0",
|
||||
"async-service>=0.1.0a6",
|
||||
"async-exit-stack==1.0.1",
|
||||
"trio-typing>=0.3.0,<0.4.0",
|
||||
"noiseprotocol>=0.3.0,<0.4.0",
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user