You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2020/09/08 11:01:42 UTC

[incubator-ponymail-foal] branch master updated: Runs with 3.7.3!

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new c8b6985  Runs with 3.7.3!
c8b6985 is described below

commit c8b69853f33b022fe43d9c49191da80671d4d4d3
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Sep 8 13:01:28 2020 +0200

    Runs with 3.7.3!
---
 README.md      | 2 +-
 tools/setup.py | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index b92ccd2..b5df5ea 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ As several components are not finished or in working order yet, this is pending.
 ### Current setup requirements:
 
 - Linux or other UNIX based operating system (Windows has not been tested, but might work).
-- Python 3.8 or higher with dependencies from `requirements.txt`.
+- Python 3.7.3 or higher with dependencies from `requirements.txt`.
 - Web server with proxy capabilities for the UI.
 - ElasticSearch 6.x or higher, 7.x recommended.
 
diff --git a/tools/setup.py b/tools/setup.py
index 0a67476..b8e97f2 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -28,12 +28,12 @@ if sys.version_info <= (3, 3):
     sys.exit(-1)
 
 # Backend needs 3.8 or higher, warn if not found.
-if sys.version_info < (3, 8, 0):
+if sys.version_info < (3, 7, 3):
     print(
-        "Warning: Pony Mail Foal requires Python 3.8 or higher for backend operations."
+        "Warning: Pony Mail Foal requires Python 3.7.3 or higher for backend operations."
     )
     print(
-        "You will be able to run the setup using this version (%u.%u), but will need >=3.8"
+        "You will be able to run the setup using this version (%u.%u), but will need >=3.7.3"
         % (sys.version_info.major, sys.version_info.minor)
     )
     print("for operating the UI backend server.")