build: Require python 3.5

This commit is contained in:
MarcoFalke
2019-02-20 18:13:43 -05:00
parent fa6bf21f5e
commit fab5a1e0f4
17 changed files with 18 additions and 122 deletions

View File

@@ -31,9 +31,6 @@ from .util import (
p2p_port,
)
# For Python 3.4 compatibility
JSONDecodeError = getattr(json, "JSONDecodeError", ValueError)
BITCOIND_PROC_WAIT_TIMEOUT = 60
@@ -565,5 +562,5 @@ class TestNodeCLI():
raise subprocess.CalledProcessError(returncode, self.binary, output=cli_stderr)
try:
return json.loads(cli_stdout, parse_float=decimal.Decimal)
except JSONDecodeError:
except json.JSONDecodeError:
return cli_stdout.rstrip("\n")