"openmmapi/src/RGForceImpl.cpp" did not exist on "74a8266f4fbe2ac74c41ef84b47b57245e729020"
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 ...@@ -5,7 +5,10 @@ from __future__ import print_function
import sys 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: try:
from pip.pep425tags import get_supported from pip.pep425tags import get_supported
except ImportError: # pip 10 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