summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElod Illes <elod.illes@est.tech>2019-09-02 13:33:02 +0200
committerElod Illes <elod.illes@est.tech>2019-09-02 13:40:54 +0200
commit94aefb2c3db5612cb11a5eb44be0e9838e545ada (patch)
tree9af2660754a436379a02693fec943abd96b32c44
parenta7580b341ac73fc4510f251f500963b315b5385d (diff)
downloadceilometer-stable/ocata.tar.gz
[ocata only] Fix alembic requirementocata-eolstable/ocata
Ceilometer has chosen to not consume upper-constraints.txt, and latest version of alembic (1.1.0) requires SQLAlchemy 1.1.0, which is constrained in requirements.txt This causes error when running py27 tests: CommandError: SQLAlchemy 1.1.0 or greater is required. Change-Id: Ie422738b724d1c75779e52f85218fe2c8a4b4243
-rw-r--r--requirements.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index fc82cc54..18283462 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,6 +2,7 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
+alembic<1.1.0 # MIT
cachetools>=1.1.0 # MIT License
cotyledon>=1.3.0 #Apache-2.0
futures>=3.0;python_version=='2.7' or python_version=='2.6' # BSD