From 85bc0405100bb8106c272d7655d1dc65f8ef220e Mon Sep 17 00:00:00 2001 From: Filip Jagodzinski Date: Fri, 11 Dec 2020 23:29:20 +0100 Subject: [PATCH] Fix `mbed device-management` command for Python 3.8 Bump the `future` module version to 0.18.0 to fix an ImportError present for Python 3.8: ImportError: cannot import name 'splitattr' from 'urllib.request' (/usr/lib/python3.8/urllib/request.py) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a61683a1dd..794ab69ae3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ prettytable==0.7.2 junit-xml==1.8 pyyaml==4.2b1 jsonschema==2.6.0 -future==0.16.0 +future>=0.18.0,<1.0 six==1.12.0 mbed-cloud-sdk>=2.0.6,<2.1 requests>=2.20,<2.21