mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #14940 from Patater/update-prettytable
python: Allow newer prettytable with newer pythonpull/14945/head
commit
662bd59973
|
@ -1,6 +1,5 @@
|
|||
colorama==0.3.9
|
||||
urllib3[secure]>=1.26.5
|
||||
prettytable==0.7.2
|
||||
junit-xml==1.8
|
||||
PyYAML>=5.4
|
||||
jsonschema==2.6.0
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
prettytable==0.7.2
|
||||
PrettyTable<=1.0.1; python_version < '3.6'
|
||||
prettytable>=2.0,<3.0; python_version >= '3.6'
|
||||
future>=0.18.0,<1.0
|
||||
jinja2>=2.11.3
|
||||
intelhex>=2.3.0,<3.0.0
|
||||
|
|
Loading…
Reference in New Issue