Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make setup.py compatible with pip version 10 #9

Merged
merged 2 commits into from
Jun 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
import platform
import pip

pip_major = int(pip.__version__.split(".")[0])
if pip_major < 10:
# https://github.com/pypa/pip/issues/5240
from pip import main
else:
from pip._internal import main

python_version = platform.python_version()[:3]

ray_whl = "ray" # Fall back on pip install if no relevant wheel exists
Expand Down Expand Up @@ -37,7 +44,7 @@

class build_ext(_build_ext.build_ext):
def run(self):
pip.main(['install', ray_whl])
main(['install', ray_whl])


setup(
Expand Down