Explicitly require pathlib (See #33)

This commit is contained in:
Gavin Wahl 2015-04-23 10:42:57 -06:00
parent ba2c6c17ea
commit a91323b135
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,12 @@ install_requires = [
'Django>=1.4',
'pyScss>=1.3.4',
]
try:
import pathlib
except ImportError:
install_requires.append('pathlib')
tests_require = [
'Pillow',
'django-compressor>=1.3',