Skip to content

Commit

Permalink
use pathlib2 v2.3.0 on python3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeldmann committed Jul 6, 2018
1 parent 98d8de0 commit 99c7714
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
]
if sys.version_info < (3, 5):
install_requires.append('typing')
if sys.version_info < (3, 6):
if sys.version_info < (3, 4):
install_requires.append('pathlib2==2.3.0')
elif sys.version_info < (3, 6):
install_requires.append('pathlib2')

tests_require = ['pytest', 'mock']
Expand Down

0 comments on commit 99c7714

Please sign in to comment.