From 7b557ca50c8a82b828a3b792689be382bcf39677 Mon Sep 17 00:00:00 2001 From: rkcf Date: Wed, 24 Apr 2019 07:57:12 -0700 Subject: [PATCH] change configparser requirement to be conditional on python version 2 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c36eb62..134c512 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,9 @@ platforms="ALL", license="GPL", packages=['arabic_reshaper'], - install_requires=['configparser', 'future', 'setuptools'], + install_requires=['configparser; python_version <"3"', + 'future', + 'setuptools'], author="Abdullah Diab", author_email="mpcabd@gmail.com", maintainer="Abdullah Diab",