[sso-api] Fix SocketIO transitive dependency (dnspython)

Flask-SocketIO depends on dnspython but dnspython 2.3 removes
dns.rdtypes.ANY, which is needed by Flask-SocketIO so we keep it below
version 2.3

We had missed Flask-SocketIO being a dependency on API when fixing the
issue for admin.
feature/wp_can_upload_videos
Evilham 2023-02-03 11:40:13 +01:00
parent e15a3b760c
commit ed44b8d3d2
No known key found for this signature in database
GPG Key ID: AE3EE30D970886BF
1 changed files with 5 additions and 1 deletions

View File

@ -20,4 +20,8 @@
Flask==2.0.1
eventlet==0.33.0
Flask-SocketIO==5.1.0
python-keycloak==0.26.1
# Flask-SocketIO depends on dnspython
# but dnspython 2.3 removes dns.rdtypes.ANY, which is needed by Flask-SocketIO
# so we keep it below version 2.3
dnspython<2.3
python-keycloak==0.26.1