From d2ed6e4b0c09d2ee001272548ebbf381e48f7126 Mon Sep 17 00:00:00 2001 From: zhuboxiang Date: Wed, 31 Jan 2024 14:14:58 +0800 Subject: [PATCH] fix: Upgrade the version of databases For this commit https://review.opendev.org/c/openstack/requirements/+/900435 The version of SQLAlchemy has been as 1.4.50 From the install_requires of databases, we need to upgrade it. For 0.8.0 version of databases, sqlalchemy>=1.4.42,<1.5 Closes-Bug: #1974452 Closes-Bug: #2025755 Change-Id: I4c046d2e8a8188046f96809219eb6ddf1f950aa6 --- requirements.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2681bac..af7c09a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,10 @@ -# 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>=5.8.0 # Apache-2.0 fastapi<=0.58.1 # MIT pydantic<=1.8.2 # MIT uvicorn<=0.17.6 # BSD License (3 clause) gunicorn>=20.1.0 # MIT python-jose<=3.3.0 # MIT -databases<=0.5.5 # BSD License (3 clause) +databases<=0.8.0 # BSD License (3 clause) aiomysql<=0.1.1 # MIT aiosqlite<=0.17.0 # MIT loguru<=0.5.3 # MIT