Fix mypy command

- Remove requirements_dev.txt
- Add detailed versions
This commit is contained in:
mhchia
2019-07-24 16:34:55 +08:00
parent d3a948be47
commit 1ae306ae8f
3 changed files with 8 additions and 15 deletions

View File

@ -10,17 +10,17 @@ classifiers = [
# pylint: disable=invalid-name
extras_require = {
"test": [
"codecov",
"pytest",
"pytest-cov",
"pytest-asyncio",
"codecov>=2.0.15,<3.0.0",
"pytest>=4.6.3,<5.0.0",
"pytest-cov>=2.7.1,<3.0.0",
"pytest-asyncio>=0.10.0,<1.0.0",
],
"lint": [
"pylint",
"mypy",
"pylint>=2.3.1,<3.0.0",
"mypy>=0.701,<1.0",
],
"dev": [
"tox",
"tox>=3.13.2,<4.0.0",
],
}