This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update minimal Nuitka required version
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2019-2020, Jorj McKie, mailto:<[email protected]> | ||
# Copyright 2019-2020, Orsiris de Jong, mailto:<[email protected]> | ||
# Copyright 2019-2021, Orsiris de Jong, mailto:<[email protected]> | ||
# | ||
# Part of "Nuitka", an optimizing Python compiler that is compatible and | ||
# integrates with CPython, but also works on its own. | ||
|
@@ -44,8 +44,8 @@ | |
|
||
# TODO: Provide a comparison/check method in the nuitka.Version module, maybe for 0.6.10 | ||
|
||
if not nuitka_version >= (0,6,9): | ||
sys.exit("This needs Nuitka version 0.6.9 or higher, this is %s" % getNuitkaVersion()) | ||
if not nuitka_version >= (0,6,11): | ||
sys.exit("This needs Nuitka version 0.6.11 or higher, this is %s" % getNuitkaVersion()) | ||
|
||
python_version = sys.version.split()[0] | ||
this_dir = os.path.dirname(os.path.abspath(__file__)) | ||
|