File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11# Copyright 2017 Palantir Technologies, Inc.
22import os
3- from future . standard_library import install_aliases
3+ import sys
44import pluggy
55from ._version import get_versions
66
7- install_aliases ()
7+ if sys .version_info [0 ] < 3 :
8+ from future .standard_library import install_aliases
9+ install_aliases ()
10+
811__version__ = get_versions ()['version' ]
912del get_versions
1013
Original file line number Diff line number Diff line change 3333 # https://packaging.python.org/en/latest/requirements.html
3434 install_requires = [
3535 'configparser; python_version<"3.0"' ,
36- 'future>=0.14.0' ,
37- 'futures; python_version<"3.2"' ,
36+ 'future>=0.14.0; python_version<"3"' ,
3837 'backports.functools_lru_cache; python_version<"3.2"' ,
3938 'jedi>=0.15.0,<0.16' ,
4039 'python-jsonrpc-server>=0.1.0' ,
You can’t perform that action at this time.
0 commit comments