From bdac3f61bebd27890ae53eb2c54a7a1964197525 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 29 Aug 2022 21:00:41 +0700 Subject: [PATCH] Bump minimum required construct version to v2.9.51 With this version I can get all unittests passing: python -m unittest discover tests/ We're passing argument 'path' to stream_read_entire(), which was added in [1] and become available since v2.9.51. Change-Id: I4223c83570d333ad8d79bc2aa2d8bcc580156cff Related: [1] bfe71315b027e18e62f00ec4de75043992fd2316 construct.git Related: OS#5666 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec1a76a2..b9ad1bf0 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( "pytlv", "cmd2 >= 1.3.0, < 2.0.0", "jsonpath-ng", - "construct >= 2.9", + "construct >= 2.9.51", "bidict", "gsm0338", "termcolor",