Skip to content

Commit

Permalink
Merge pull request #62 from ymyzk/limit-tox-version
Browse files Browse the repository at this point in the history
Limit tox version
  • Loading branch information
ymyzk authored Apr 7, 2021
2 parents deecfbd + 9ff551b commit 1c2ca56
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ package_dir =
zip_safe = True
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
install_requires =
tox >= 3.12
tox >=3.12, <4
typing; python_version<"3.5"
setup_requires =
setuptools_scm >= 3, <4
setuptools_scm >=3, <4

[options.packages.find]
where = src
Expand All @@ -57,11 +57,11 @@ tox =
[options.extras_require]
testing =
black; platform_python_implementation=='CPython' and python_version>='3.6'
flake8 >= 3, <4
pytest >= 4.0.0, <6
pytest-cov >= 2, <3
pytest-mock >= 2, <3
pytest-randomly >= 3; python_version>='3.5'
flake8 >=3, <4
pytest >=4, <6
pytest-cov >=2, <3
pytest-mock >=2, <3
pytest-randomly >=3; python_version>='3.5'

[options.package_data]
tox_gh_actions =
Expand Down

0 comments on commit 1c2ca56

Please sign in to comment.