forked from platypush/platypush
(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:
parent
b4627ecd04
commit
26d9aaa5b1
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -57,7 +57,7 @@ setup(
|
||||||
'redis',
|
'redis',
|
||||||
'requests',
|
'requests',
|
||||||
'croniter',
|
'croniter',
|
||||||
'sqlalchemy',
|
'sqlalchemy<2.0.0',
|
||||||
'websockets',
|
'websockets',
|
||||||
'websocket-client',
|
'websocket-client',
|
||||||
'wheel',
|
'wheel',
|
||||||
|
|
Loading…
Reference in a new issue