Remove fixed sqlalchemy-migrate deprecation warning filters

Both [1] and [2] are fixed in sqlalchemy-migrate 0.13.0 so
we can bump requirements and drop the warnings filters.

Depends-On: https://review.opendev.org/690419/

[1] https://review.opendev.org/682518/
[2] https://review.opendev.org/671040/

Change-Id: Idf2cf26d64e0a535291f710d1b510f4780e40587
This commit is contained in:
Matt Riedemann 2019-10-23 14:09:20 -04:00
parent fd470598dc
commit b972f23ba6
3 changed files with 2 additions and 17 deletions

View File

@ -146,7 +146,7 @@ six==1.10.0
smmap2==2.0.3
sortedcontainers==2.1.0
SQLAlchemy==1.2.19
sqlalchemy-migrate==0.11.0
sqlalchemy-migrate==0.13.0
sqlparse==0.2.4
statsd==3.2.2
stestr==1.0.0

View File

@ -882,21 +882,6 @@ class WarningsFixture(fixtures.Fixture):
'ignore', message=".* 'VIFPortProfileOVSRepresentor' .* "
"is deprecated", category=PendingDeprecationWarning)
# TODO(mriedem): Change (or remove) this DeprecationWarning once
# https://bugs.launchpad.net/sqlalchemy-migrate/+bug/1814288 is fixed.
warnings.filterwarnings(
'ignore', message=r'inspect.getargspec\(\) is deprecated',
category=DeprecationWarning,
module='migrate.versioning.script.py')
# TODO(stephenfin): Remove once we bump our sqlalchemy-migrate version
# to whatever is released early in Ussuri and includes change
# I319785d7dd83ffe2c6e651a2494b073becc84684
warnings.filterwarnings(
'ignore', message='The Engine.contextual_connect.*',
category=sqla_exc.SADeprecationWarning,
module='migrate.changeset.databases.visitor')
self.addCleanup(warnings.resetwarnings)

View File

@ -18,7 +18,7 @@ greenlet>=0.4.10,!=0.4.14 # MIT
PasteDeploy>=1.5.0 # MIT
Paste>=2.0.2 # MIT
PrettyTable<0.8,>=0.7.1 # BSD
sqlalchemy-migrate>=0.11.0 # Apache-2.0
sqlalchemy-migrate>=0.13.0 # Apache-2.0
netaddr>=0.7.18 # BSD
netifaces>=0.10.4 # MIT
paramiko>=2.0.0 # LGPLv2.1+