From e0a78941b08e2209da8a4ed1479faa15ab39edff Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Wed, 12 Apr 2023 14:16:33 +0200 Subject: [PATCH] Support more recent reedsolo packages - https://github.com/tomerfiliba-org/reedsolomon/releases/tag/v1.6.1 - this seems to be related to licenses only. - https://github.com/tomerfiliba-org/reedsolomon/releases/tag/v1.7.0 - this is related to installation. Closes https://github.com/espressif/esptool/issues/872 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 04c484fd5..25f0b5e80 100644 --- a/setup.py +++ b/setup.py @@ -125,7 +125,7 @@ def find_version(*file_paths): "cryptography>=2.1.4,<40.0.0", "ecdsa>=0.16.0", "pyserial>=3.0", - "reedsolo>=1.5.3,<=1.6.0", + "reedsolo>=1.5.3,<1.8", ], packages=find_packages(), include_package_data=True,