5a97e855f5
Resolve the following warnings issued in recent versions of SQLAlchemy: SADeprecationWarning: Implicit coercion of SELECT and textual SELECT constructs into FROM clauses is deprecated; please call .subquery() on any Core select or ORM Query object in order to produce a subquery object. The resolution is simple: instead of using 'FromClause.alias', use 'Query.subquery'. A warning filter is included to prevent us reintroducing this issue in the future. It can be dropped once we start using SQLAlchemy 2.0 where this behavior will be removed. This change requires bumping SQLAlchemy to 1.4.0, which is the first version to introduce the selectable '.subquery()' method. We must also bump oslo.db to 8.6.0, which is the first version to support SQLAlchemy 1.4.x. The alternative would be to introduce a switch based on SQLAlchemy versions, but that's tech debt that'll have to be cleaned up. Change-Id: I6300be962dc3ce391f70d7c7e8af7cb4d6ce9baf Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# 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.
|
|
|
|
pbr>=3.1.1 # Apache-2.0
|
|
SQLAlchemy>=1.4.0 # MIT
|
|
keystonemiddleware>=4.18.0 # Apache-2.0
|
|
Routes>=2.3.1 # MIT
|
|
WebOb>=1.8.2 # MIT
|
|
jsonschema>=3.2.0 # MIT
|
|
requests>=2.25.0 # Apache-2.0
|
|
setuptools!=24.0.0,!=34.0.0,!=34.0.1,!=34.0.2,!=34.0.3,!=34.1.0,!=34.1.1,!=34.2.0,!=34.3.0,!=34.3.1,!=34.3.2,!=36.2.0,>=21.0.0 # PSF/ZPL
|
|
oslo.concurrency>=3.26.0 # Apache-2.0
|
|
oslo.config>=6.7.0 # Apache-2.0
|
|
oslo.context>=2.22.0 # Apache-2.0
|
|
oslo.log>=4.3.0 # Apache-2.0
|
|
oslo.serialization>=2.25.0 # Apache-2.0
|
|
oslo.utils>=4.5.0 # Apache-2.0
|
|
oslo.db>=8.6.0 # Apache-2.0
|
|
oslo.policy>=3.7.0 # Apache-2.0
|
|
oslo.middleware>=3.31.0 # Apache-2.0
|
|
oslo.upgradecheck>=1.3.0 # Apache-2.0
|
|
# NOTE(efried): Sync lower-constraints.txt for os-traits & os-resource-classes.
|
|
os-resource-classes>=1.1.0 # Apache-2.0
|
|
os-traits>=2.7.0 # Apache-2.0
|
|
microversion-parse>=0.2.1 # Apache-2.0
|