Dev dependencies now require old pip version that tox can work with.

This commit is contained in:
Josh Miklos
2020-06-22 17:03:33 -07:00
parent c2be473cbe
commit fe3fd98312
2 changed files with 3 additions and 2 deletions

View File

@ -51,6 +51,7 @@ setup(
# even though I could install a lot of viruses just from this setup.py # even though I could install a lot of viruses just from this setup.py
# "linux": ["PyV4L2Cam @ git+https://github.com/SimLeek/PyV4L2Cam"], # "linux": ["PyV4L2Cam @ git+https://github.com/SimLeek/PyV4L2Cam"],
"dev": [ "dev": [
"pip==18.1"
"black==18.*,>=18.3.0.a0", "black==18.*,>=18.3.0.a0",
"coverage==4.*,>=4.5.0", "coverage==4.*,>=4.5.0",
"mock==3.*,>=3.0.0", "mock==3.*,>=3.0.0",

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py36, py37, pydocstyle envlist = py36, py37, mypy, pydocstyle
isolated_build = false isolated_build = false
skip_missing_interpreters = true skip_missing_interpreters = true
skipsdist=True skipsdist=True
@ -7,7 +7,7 @@ skipsdist=True
[gh-actions] [gh-actions]
python = python =
3.6: py36, pydocstyle 3.6: py36, pydocstyle
3.7: py37, pydocstyle 3.7: py37, mypy, pydocstyle
[testenv] [testenv]
whitelist_externals = coverage whitelist_externals = coverage