diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-28 09:41:09 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-28 09:41:09 -0500 |
commit | edfa86809c0010caaa24b65c0e84c8467ba43b2b (patch) | |
tree | 84c05cc9324d62f4fbb298bb21e11f4e74eb06a4 /setup.py | |
parent | 5a028a7061f37868133d2951ca284d34e253484d (diff) | |
download | external_python_setuptools-edfa86809c0010caaa24b65c0e84c8467ba43b2b.tar.gz external_python_setuptools-edfa86809c0010caaa24b65c0e84c8467ba43b2b.tar.bz2 external_python_setuptools-edfa86809c0010caaa24b65c0e84c8467ba43b2b.zip |
Loosen restriction on the version of six required. Fixes #947.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -164,7 +164,7 @@ setup_params = dict( python_requires='>=2.6,!=3.0.*,!=3.1.*,!=3.2.*', install_requires=[ 'packaging>=16.8', - 'six>=1.10.0', + 'six>=1.6.0', 'appdirs>=1.4.0', ], extras_require={ |