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

bump references to Python 3.4 to Python 3.5

Our oldest supported distribution is Ubuntu 16.04, which ships
with Python 3.5.

Closes #169
parent be364e7c
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -19,7 +19,7 @@ __all__ = []
package_root = os.path.dirname(os.path.realpath(__file__))
distr_root = os.path.dirname(package_root)
def ensure_python(required_version=(3, 4)):
def ensure_python(required_version=(3, 5)):
v = sys.version_info
if v[:3] < required_version:
error = "This version of Kwant requires Python {} or above.".format(
......
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