(Temporarily) specify `sqlalchemy<2.0.0`.

SQLAlchemy 2 has introduced several breaking changes that can break
several things in the application - especially where the code uses
`connection.execute()` with raw SQL statements.

We need to temporarily force the installation of versions from the 1.x
branch, while migrating the existing code to the new version.
This commit is contained in:
Fabio Manganiello 2023-02-22 00:25:57 +01:00
parent b4627ecd04
commit 26d9aaa5b1
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
2 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ python-dateutil
tz tz
frozendict frozendict
requests requests
sqlalchemy sqlalchemy<2.0.0
bcrypt bcrypt
rsa rsa
zeroconf zeroconf>=0.27.0
paho-mqtt paho-mqtt
websocket-client websocket-client
croniter croniter

View File

@ -57,7 +57,7 @@ setup(
'redis', 'redis',
'requests', 'requests',
'croniter', 'croniter',
'sqlalchemy', 'sqlalchemy<2.0.0',
'websockets', 'websockets',
'websocket-client', 'websocket-client',
'wheel', 'wheel',