We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60dad1a commit 57cd273Copy full SHA for 57cd273
setup.py
@@ -269,6 +269,7 @@ def get_simple_vars_from_src(src):
269
extras_require={
270
':python_version == "2.7"': [
271
'futures>=1.0',
272
+ 'enum34>=1.1'
273
],
274
},
275
install_requires=required,
tox.ini
@@ -135,3 +135,11 @@ commands = python setup.py build_sphinx
135
[testenv:bandit]
136
deps = bandit
137
commands = bandit -r exec_helpers
138
+
139
+[testenv:dep-graph]
140
+envdir = {toxworkdir}/dep-graph
141
+deps =
142
+ pipenv
143
+commands =
144
+ pipenv install -r {toxinidir}/build_requirements.txt --skip-lock
145
+ pipenv graph
0 commit comments