From 999e38cf087cd3d1adcccde25448589966ba8591 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Thu, 9 Jan 2020 19:51:04 +0900 Subject: [PATCH] Bump min version of decorator decorator.decorate decorator is only implemented in decorator 4.0.0. The current lower bound of decorator is 3.4.0 but it does not work with openstacksdk. It is found during a OSC change [1]. This commit bump the minimum version of decorator. It looks like that decorator 4.0.0 works but we now test with decorator 4.4.1 (the latest version), so I chose the latest version as the minimum version. [1] https://review.opendev.org/#/c/674325/ Change-Id: I7479a84ef19c7f1e881b9d56c12d2798340eb53b --- lower-constraints.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lower-constraints.txt b/lower-constraints.txt index c4e6ec4d7..1f491875d 100644 --- a/lower-constraints.txt +++ b/lower-constraints.txt @@ -2,7 +2,7 @@ appdirs==1.3.0 coverage==4.0 cryptography==2.1 ddt==1.0.1 -decorator==3.4.0 +decorator==4.4.1 doc8==0.8.0 dogpile.cache==0.6.5 extras==1.0.0 diff --git a/requirements.txt b/requirements.txt index 90f88ae87..90a88c6e2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ os-service-types>=1.7.0 # Apache-2.0 keystoneauth1>=3.18.0 # Apache-2.0 munch>=2.1.0 # MIT -decorator>=3.4.0 # BSD +decorator>=4.4.1 # BSD jmespath>=0.9.0 # MIT ipaddress>=1.0.17;python_version<'3.3' # PSF futures>=3.0.0;python_version=='2.7' or python_version=='2.6' # BSD