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

Workaround for Wheel 0.32.0 API change

WheelFile moved for this release.

See: https://github.com/pypa/wheel/issues/255
parent 4e7a9396
......@@ -5,7 +5,10 @@ from __future__ import print_function
import sys
from wheel.install import WheelFile
try:
from wheel.install import WheelFile
except ImportError: # As of Wheel 0.32.0
from wheel.wheelfile import WheelFile
try:
from pip.pep425tags import get_supported
except ImportError: # pip 10
......
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