Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def read(fname):
install_requires=[
'pytest>=2.8,<4.7; python_version<"3.5"',
'pytest>=2.8; python_version>="3.5"',
'mypy>=0.570,<0.700; python_version<"3.5"',
'mypy>=0.570; python_version>="3.5" and python_version<"3.8"',
'mypy>=0.500,<0.700; python_version<"3.5"',
'mypy>=0.500; python_version>="3.5" and python_version<"3.8"',
'mypy>=0.700; python_version>="3.8"',
],
classifiers=[
Expand Down
15 changes: 11 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
min_version = 3.7.0
isolated_build = true
envlist =
py34-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.57, 0.5x, 0.60, 0.6x}
py35-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py36-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py37-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py34-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.50, 0.5x, 0.60, 0.6x}
py35-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py36-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py37-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
py38-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.71, 0.7x}
flake8

Expand Down Expand Up @@ -39,6 +39,13 @@ deps =
pytest4.x: pytest ~= 4.0
pytest5.0: pytest ~= 5.0.0
pytest5.x: pytest ~= 5.0
mypy0.50: mypy >= 0.500, < 0.510
mypy0.51: mypy >= 0.510, < 0.520
mypy0.52: mypy >= 0.520, < 0.530
mypy0.53: mypy >= 0.530, < 0.540
mypy0.54: mypy >= 0.540, < 0.550
mypy0.55: mypy >= 0.550, < 0.560
mypy0.56: mypy >= 0.560, < 0.570
mypy0.57: mypy >= 0.570, < 0.580
mypy0.58: mypy >= 0.580, < 0.590
mypy0.59: mypy >= 0.590, < 0.600
Expand Down