(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.
master
Fabio Manganiello 4 weeks ago
parent b4627ecd04
commit 26d9aaa5b1
Signed by: blacklight
GPG Key ID: D90FBA7F76362774

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

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

Loading…
Cancel
Save