Uncap SQLAlchemy in requirements.txt

Unit tests are failing because we're pulling in uncapped
alembic (by way of oslo.db which is pulled in from subunit2sql).
alembic 1.1.0, released on 2019-8-26, requires SQLAlchemy>=1.1.0
which e-r has capped at <1.1.0.

This removes the capped SQLAlchemy dependency and blacklists the
known bad versions from global-requirements.

Change-Id: Iaca9825ea2f5d75c5151b8a726ba1c0283f6536a
Closes-Bug: #1841964
This commit is contained in:
Matt Riedemann 2019-08-29 12:30:03 -04:00
parent 219b5823e9
commit dfede97d1c
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ launchpadlib>=1.10.6 # LGPL
Jinja2
requests
subunit2sql>=0.9.0
SQLAlchemy>=0.9.7,<1.1.0
SQLAlchemy>=0.9.7,!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8
PyMySQL>=0.6.2 # MIT License