Skip to content

Commit

Permalink
Require enum34 directly (previously was indirect) (#36)
Browse files Browse the repository at this point in the history
Still no PEP0508 usage due to FPM is not updated
`dep-graph` tox target for dependencies debug
  • Loading branch information
penguinolog committed May 7, 2018
1 parent 60dad1a commit 57cd273
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ def get_simple_vars_from_src(src):
extras_require={
':python_version == "2.7"': [
'futures>=1.0',
'enum34>=1.1'
],
},
install_requires=required,
Expand Down
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,11 @@ commands = python setup.py build_sphinx
[testenv:bandit]
deps = bandit
commands = bandit -r exec_helpers

[testenv:dep-graph]
envdir = {toxworkdir}/dep-graph
deps =
pipenv
commands =
pipenv install -r {toxinidir}/build_requirements.txt --skip-lock
pipenv graph

0 comments on commit 57cd273

Please sign in to comment.