Skip to content

Commit 84abef7

Browse files
authored
Merge pull request #986 from efiop/master
setup: use extras_require for backward compatibility
2 parents 2195ff2 + 9ff2503 commit 84abef7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dvc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
import os
77

8-
VERSION_BASE = '0.16.4'
8+
VERSION_BASE = '0.16.5'
99
__version__ = VERSION_BASE
1010

1111
PACKAGEPATH = os.path.abspath(os.path.dirname(__file__))

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"jsonpath-rw==1.4.0",
2424
"reflink==0.2.0",
2525
"requests>=2.18.4",
26-
'futures; python_version == "2.7"',
2726
]
2827

2928
# Extra dependencies for remote integrations
@@ -57,6 +56,8 @@
5756
's3': s3,
5857
'azure': azure,
5958
'ssh': ssh,
59+
# NOTE: https://github.com/inveniosoftware/troubleshooting/issues/1
60+
':python_version=="2.7"': ['futures'],
6061
},
6162
keywords='data science, data version control, machine learning',
6263
classifiers=[

0 commit comments

Comments
 (0)