commit | f2a0339426a4f1e709b1ab7cb6fc0be5d4b8ff1f | [log] [tgz] |
---|---|---|
author | David Gang <michaelgang@gmail.com> | Thu Mar 22 22:41:39 2018 +0200 |
committer | Jon Wayne Parrott <jonwayne@google.com> | Thu Mar 22 13:41:39 2018 -0700 |
tree | 1941db04d9ad2b5a0eeaf6ad2f4e03d7daa8d603 | |
parent | a7309d751c2cb51950cf499365f311bf185dd66c [diff] |
Use `install_requires` for platform dependencies instead of `extras_require` (#4991)
diff --git a/setup.py b/setup.py index 866ecce..1b621bb 100644 --- a/setup.py +++ b/setup.py
@@ -36,10 +36,10 @@ 'setuptools>=34.0.0', 'six>=1.10.0', 'pytz', + 'futures>=3.2.0;python_version<"3.2"' ] extras = { - 'grpc': 'grpcio>=1.8.2', - ':python_version < "3.2"': 'futures>=3.2.0', + 'grpc': 'grpcio>=1.8.2' }