Reduced hard requirement of python version

This commit is contained in:
Veronica K. B. Olsen
2020-05-16 20:39:58 +02:00
parent bb894926d0
commit 92fc81d4ec
2 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -64,7 +64,10 @@ There are no launcher icons yet.
Consult your operating system documentation for how to make those.
These will be added at some point, and I would appreciate any assistance from people working on Windows and MacOS as I don't use either of those operating systems.
## Dependencies
## Package Dependencies
It is recommended that novelWriter runs with Qt 5.9 or later, and Python 3.6 or later.
Running with Qt as low as 5.2.1 and Python 3.4.3 has been tested, and worked in the past, but there are no guarantees that this will keep working as these are not a part of the test builds.
For the apt package manager on Debian systems, the following Python3 packages are needed:
+2 -2
View File
@@ -219,9 +219,9 @@ def main(sysArgs=None):
# Check Packages and Versions
errorData = []
if sys.hexversion < 0x030600F0:
if sys.hexversion < 0x030403F0:
errorData.append(
"At least Python 3.6 is required."
"At least Python 3.4.3 is required, but 3.6 is highly recommended."
)
if CONFIG.verQtValue < 50200:
errorData.append(