Skip to content

Commit cd8a69b

Browse files
david-gangJon Wayne Parrott
authored andcommitted
Use install_requires for platform dependencies instead of extras_require (googleapis#4991)
1 parent f4e0fac commit cd8a69b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api_core/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
'setuptools>=34.0.0',
3737
'six>=1.10.0',
3838
'pytz',
39+
'futures>=3.2.0;python_version<"3.2"'
3940
]
4041
extras = {
41-
'grpc': 'grpcio>=1.8.2',
42-
':python_version < "3.2"': 'futures>=3.2.0',
42+
'grpc': 'grpcio>=1.8.2'
4343
}
4444

4545

vision/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
release_status = 'Development Status :: 4 - Beta'
3131
dependencies = [
3232
'google-api-core[grpc]<2.0.0dev,>=0.1.0',
33+
'enum34;python_version<"3.4"'
3334
]
3435
extras = {
35-
':python_version < "3.4"': 'enum34',
3636
}
3737

3838

0 commit comments

Comments
 (0)