Python3 requirements, remove configparser module.

- configparser is a backported module for python2 and is a python 3
  buildin module.
This commit is contained in:
Uggla 2016-02-15 11:14:17 +01:00
parent 9094675555
commit 7c33c81923

View File

@ -11,4 +11,4 @@ simplejson>=3.8.1
# Python3 compat # Python3 compat
future>=0.15.2 future>=0.15.2
configparser>=3.3.0 configparser>=3.3.0; python_version < '3'