run mypy locally, bump mypy to 1.10.0, fix new errors

This commit is contained in:
pacrob
2024-07-03 11:55:44 -06:00
committed by Paul Robinson
parent 0326e34870
commit c5cc0ee969
6 changed files with 41 additions and 36 deletions

View File

@ -11,6 +11,7 @@ extras_require = {
"build>=0.9.0",
"bump-my-version>=0.5.3",
"ipython",
"mypy==1.10.0",
"pre-commit>=3.4.0",
"tox>=4.0.0",
"twine",
@ -52,19 +53,20 @@ with open("./README.md") as readme:
install_requires = [
"pycryptodome>=3.9.2",
"base58>=1.0.3",
"pymultihash>=0.8.2",
"multiaddr>=0.0.9",
"rpcudp>=3.0.0",
"lru-dict>=1.1.6",
"protobuf>=3.10.0",
"coincurve>=10.0.0",
"pynacl>=1.3.0",
"trio>=0.15.0",
"noiseprotocol>=0.3.0",
"trio-typing>=0.0.4",
"exceptiongroup>=1.2.0; python_version < '3.11'",
"lru-dict>=1.1.6",
"multiaddr>=0.0.9",
"mypy-protobuf>=3.0.0",
"noiseprotocol>=0.3.0",
"protobuf>=3.10.0",
"pycryptodome>=3.9.2",
"pymultihash>=0.8.2",
"pynacl>=1.3.0",
"rpcudp>=3.0.0",
"trio-typing>=0.0.4",
"trio>=0.15.0",
]