Make furl requirement py2 only

This commit is contained in:
Konsta Vesterinen
2013-11-20 13:39:21 +02:00
parent 15cdd1b19f
commit fccb348f68

View File

@@ -47,7 +47,7 @@ extras_require = {
'color': ['colour>=0.0.4'],
'ipaddress': ['ipaddr'] if not PY3 else [],
'timezone': ['python-dateutil'],
'url': ['furl >= 0.3.5']
'url': ['furl >= 0.3.5'] if not PY3 else []
}