Commit ae3e5598 authored by Matthew Brett's avatar Matthew Brett
Browse files

Import get_supported from pip _internal code

Yes, it's ugly, but it'll do for now.
parent 6fe7f40f
......@@ -6,7 +6,10 @@ from __future__ import print_function
import sys
from wheel.install import WheelFile
from wheel.pep425tags import get_supported
try:
from pip.pep425tags import get_supported
except ImportError: # pip 10
from pip._internal.pep425tags import get_supported
def main():
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment