-
Notifications
You must be signed in to change notification settings - Fork 631
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
Update how PL is installed #7005
Conversation
Hello. You may have forgotten to update the changelog!
|
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.
Thank you @rashidnhm ! 🚀
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.
Thanks a lot for saving the CI! Fingers Crossed
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #7005 +/- ##
=======================================
Coverage 99.59% 99.59%
=======================================
Files 483 483
Lines 46066 46066
=======================================
Hits 45881 45881
Misses 185 185 ☔ View full report in Codecov by Sentry. |
**Context:** Same as #7005, but for gpu test yml file **Description of the Change:** **Benefits:** **Possible Drawbacks:** **Related GitHub Issues:** --------- Co-authored-by: Rashid N H M <[email protected]>
Context:
setuptools has had a release recently that normalizes package names:
References:
Description of the Change:
Due setuptools 75.8.0 and 75.8.1 outputting completely different package names, we cannot support both, so CI now "pins" to >=75.8.1.
Benefits:
Fix CI failures.
Possible Drawbacks:
We may need to update docs.
This is also another situation where moving away from setup.py to pyproject would yield benefits. As then you can specify the minimum setuptools version as part of the build-backend configuration.
Related GitHub Issues:
None. sc-85195