Skip to content
Snippets Groups Projects
Commit 8cecbc54 authored by Joseph Weston's avatar Joseph Weston
Browse files

correct Python version checking

parent 3b49f588
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
# directory of this distribution and at https://github.com/basnijholt/mumpy
import sys
if sys.version_info < (3, 4):
if sys.version_info[:2] < (3, 4):
sys.exit('Sorry, Python < 3.4 is not supported')
import re
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment