From 5787938d049f1d36978ffb6c03529c85744f65a0 Mon Sep 17 00:00:00 2001 From: Roger Taylor <32600614+rt121212121@users.noreply.github.com> Date: Tue, 29 May 2018 19:28:34 +1200 Subject: [PATCH] Minimum python version of 3.5.2 in all checks. Include Python version string in exceptions reported to the crash server (reports still make it to the issues list, despite no changes to the crash server to handle the extra data). (#708) --- electron-cash | 4 ++-- gui/qt/exception_window.py | 2 ++ setup-release.py | 4 ++-- setup.py | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/electron-cash b/electron-cash index a111a7e380f8..ea2ea1b117b1 100755 --- a/electron-cash +++ b/electron-cash @@ -30,8 +30,8 @@ import os import sys -if sys.version_info < (3, 5): - sys.exit("Error: Must be using Python 3.5 or higher") +if sys.version_info < (3, 5, 2): + sys.exit("Error: Must be using Python 3.5.2 or higher") # from https://gist.github.com/tito/09c42fb4767721dc323d import threading diff --git a/gui/qt/exception_window.py b/gui/qt/exception_window.py index f836e9da9215..dbb42d6619ea 100644 --- a/gui/qt/exception_window.py +++ b/gui/qt/exception_window.py @@ -47,6 +47,7 @@

Additional information