Commit 7bc0e223 authored by Jérome Perrin's avatar Jérome Perrin

setup: depend on pathlib only on old python versions

since 3.4 this is part of standard library - and having this installed
on python3.7 cause some issues (for example when running pylint)
parent 5b7765b1
......@@ -32,7 +32,7 @@ setup(name=name,
extras_require={
'test': [
'mock',
'pathlib',
'pathlib; python_version<"3.4"',
],
},
entry_points={
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment