You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our deploy.sh script, it automatically reruns pip install -r requirements.txt... but this failed because:
ERROR: Cannot install -r /var/www/repo/requirements.txt (line 2) and typing-extensions==3.10.0.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested typing-extensions==3.10.0.0
asgiref 3.7.2 depends on typing-extensions>=4; python_version < "3.11"
For now, I fixed this by commenting out asgiref. Can this also be the permanent solution?
The text was updated successfully, but these errors were encountered:
In our
deploy.sh
script, it automatically rerunspip install -r requirements.txt
... but this failed because:For now, I fixed this by commenting out
asgiref
. Can this also be the permanent solution?The text was updated successfully, but these errors were encountered: