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 a755fbd Fix 3.8 requirement warnig
a755fbd is described below
commit a755fbda654407fa4592a8645c9ed3300bf08e7e
Author: Daniel Gruno <[email protected]>
AuthorDate: Fri Sep 4 13:15:40 2020 +0200
Fix 3.8 requirement warnig
This addresses #8.
---
tools/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/setup.py b/tools/setup.py
index 9407314..8d450a5 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -28,7 +28,7 @@ if sys.version_info <= (3, 3):
sys.exit(-1)
# Backend needs 3.8 or higher, warn if not found.
-if sys.version_info <= (3, 7):
+if sys.version_info < (3, 8, 0):
print(
"Warning: Pony Mail Foal requires Python 3.8 or higher for backend
operations."
)