Revert "adding python version environmental markers in the new style"

pull/16285/head
Mehrdad Afshari 7 years ago committed by GitHub
parent e916e79cb8
commit fd1771cfa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      setup.py

@ -276,11 +276,11 @@ PACKAGE_DIRECTORIES = {
}
INSTALL_REQUIRES = (
"six>=1.5.2",
"futures>=2.2.0 ; python_version<'3.2'",
"enum34>=1.0.4 ; python_version<'3.4'"
'six>=1.5.2',
)
if not PY3:
INSTALL_REQUIRES += ('futures>=2.2.0', 'enum34>=1.0.4')
SETUP_REQUIRES = INSTALL_REQUIRES + (
'sphinx>=1.3',

Loading…
Cancel
Save