Merge pull request #18032 from grpc/environment-markers

Add environment markers to python version-dependent dependencies
pull/11795/head
Richard Belleville 6 years ago committed by GitHub
commit 17c3f579a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      setup.py

@ -298,12 +298,11 @@ PACKAGE_DIRECTORIES = {
}
INSTALL_REQUIRES = (
'six>=1.5.2',
"six>=1.5.2",
"futures>=2.2.0; python_version<'3.2'",
"enum34>=1.0.4; python_version<'3.4'",
)
if not PY3:
INSTALL_REQUIRES += ('futures>=2.2.0', 'enum34>=1.0.4')
SETUP_REQUIRES = INSTALL_REQUIRES + (
'Sphinx~=1.8.1',
'six>=1.10',

Loading…
Cancel
Save