From 7b7a94bcce542c43f6630632fb4601a85a2c7a1e Mon Sep 17 00:00:00 2001 From: HyoBin Kim Date: Wed, 3 Jan 2024 14:38:34 +0900 Subject: [PATCH] fix SQLAlchemy version https://bugs.launchpad.net/skyline-apiserver/+bug/2025755 the sqlalchemy package will be installed in versions 1.3 and 1.5 or higher due to the influence of the databases package. (defualt install version 1.4.51) need to <=1.4.41 However, sqlalchemy version 2.0 has been released, so additional improvements to version 1.x will be difficult. Change-Id: Id08257a74e3cbb7b59e793972a4f093b96a46d30 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2681bac..957d35c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ PyYAML>=5.4.1 # MIT immutables>=0.16 # Apache-2.0 alembic>=1.7.5 # MIT httpx>=0.16.1 # BSD License (3 clause) -SQLAlchemy>=1.3.24 # MIT +SQLAlchemy>=1.3.24, <=1.4.41 # MIT PyMySQL>=0.9.3 # MIT dnspython>=2.1.0 # ISC click>=7.1.2 # BSD License (3 clause)