-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
fix: fix make upgrade job and _mysql issue #32084
Changes from all commits
beb9d9f
9823d5a
7557edc
d64df89
8b1c78e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,3 +90,7 @@ babel==2.11.0 | |
social-auth-app-django==5.0.0 | ||
algoliasearch==2.6.3 | ||
django-ipware==4.0.2 | ||
|
||
# pytz>2022 has major changes which are causing test failures. | ||
# Pinning this version for now so this could be fixed in a separate PR later on | ||
pytz<2023 | ||
Comment on lines
+94
to
+96
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you ensure that there's an issue for these failures (either in pytz if they're bugs, or one of our projects if we just need to upgrade things) and add a link to it here? It really helps when we're looking through the pins to find out what can be unpinned. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Created followup issue #32093 for arbi-bom team to remove this constraint. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! Here's a PR to add the issue link: #32096 |
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.
Why are we removing the xmlsec bits?
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.
These were both added back when
mysqlclient
package was upgraded. Now, after upgradingpip
&pip-tools
to the latest version, this approach isn't working anymore so we've implemented an alternate approach.workflow already has
xmlsec-dev
system package being installed so I've removedxmlsec
package as well.Since tests are all passing perfectly after removing both these packages, I've removed both at the same time considering these unnecessary.