summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2019-01-08 18:29:25 +0000
committerJens Harbott <j.harbott@x-ion.de>2019-09-03 08:58:29 +0000
commit01ce75f5b36d2e729d0dc749c49f091617090107 (patch)
treee34682dfdf368a8ad02a16414edd2d2bf0e1f49a
parent6e52ba5bcca0b032df89f215d3ebf22a97b66c61 (diff)
downloadcliff-01ce75f5b36d2e729d0dc749c49f091617090107.tar.gz
Pin cmd2 back to <0.9 on all versions
cmd2 is now also broken on python3. Change-Id: Ib72830b26aabfd8244196be562f925fd76080dd9 Depends-On: https://review.openstack.org/629269
-rw-r--r--doc/requirements.txt3
-rw-r--r--requirements.txt3
-rw-r--r--test-requirements.txt3
3 files changed, 5 insertions, 4 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt
index 827758f..d6d8d0a 100644
--- a/doc/requirements.txt
+++ b/doc/requirements.txt
@@ -1,5 +1,6 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
+sphinx!=1.6.6,!=1.6.7,<2.0.0,>=1.6.2;python_version=='2.7' # BSD
+sphinx!=1.6.6,!=1.6.7,!=2.1.0,>=1.6.2;python_version>='3.4' # BSD
openstackdocstheme>=1.18.1 # Apache-2.0
diff --git a/requirements.txt b/requirements.txt
index e83be76..6c3fe98 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,8 +2,7 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
pbr!=2.1.0,>=2.0.0 # Apache-2.0
-cmd2!=0.8.3,<0.9.0;python_version<'3.0' # MIT
-cmd2!=0.8.3;python_version>='3.0' # MIT
+cmd2>=0.8.0,!=0.8.3,<0.9.0 # MIT
PrettyTable<0.8,>=0.7.2 # BSD
pyparsing>=2.1.0 # MIT
six>=1.10.0 # MIT
diff --git a/test-requirements.txt b/test-requirements.txt
index 4755809..45987f4 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -12,7 +12,8 @@ coverage!=4.4,>=4.0 # Apache-2.0
# sphinx is required in test-requirements in addition to doc/requirements
# because there is a sphinx extension that has tests
-sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
+sphinx!=1.6.6,!=1.6.7,<2.0.0,>=1.6.2;python_version=='2.7' # BSD
+sphinx!=1.6.6,!=1.6.7,!=2.1.0,>=1.6.2;python_version>='3.4' # BSD
# Bandit security code scanner
bandit>=1.1.0 # Apache-2.0