-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Django 3.0] Adding compatible versions of other libraries according … #1786
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 We can fix the issues in follow-up when making the Web Sockets GA
ERROR: Cannot install -r /root/repo/desktop/core/requirements.txt (line 11), -r /root/repo/desktop/core/requirements.txt (line 13), -r /root/repo/desktop/core/requirements.txt (line 14), -r /root/repo/desktop/core/requirements.txt (line 7) and Django==3.0.12 because these package versions have conflicting dependencies. The conflict is caused by: To fix this you could try to:
|
Upgrade django-babel 0.6.2 --> to remove FYI: could also use one the fork does not work You can point to a git directly, e.g.
|
b0a2a14
to
2d7ad95
Compare
For this type of error, I was trying to understand that what changes between python2 and python3 but not found as of now. |
Quick hint, seems to come from:
|
@@ -398,7 +398,7 @@ def schedule_workflow(request, workflow): | |||
|
|||
|
|||
@check_job_access_permission() | |||
def create_coordinator(request, workflow=None): | |||
def create_coordinator(request, workflow=None, *args, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels kind of invalid but this code should not be used anymore
…to Django==3.0.12
What changes were proposed in this pull request?
Upgrading other packages version as per requirement of Django==3.0.12
How was this patch tested?