Skip to content

Commit dcec4fe

Browse files
committed
Fixed bug in python v3.4 installation
1 parent 4a86c7b commit dcec4fe

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
else:
2323
import __builtin__ as builtins
2424

25+
# Fix a bug in python v3.4 installation
26+
if (sys.version_info[0:2] == (3,4)):
27+
import importlib.machinery
2528

2629
CLASSIFIERS = """\
2730
Development Status :: 3 - Alpha

0 commit comments

Comments
 (0)