-
Notifications
You must be signed in to change notification settings - Fork 13.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
chore: Bump PyYAML bounds #24731
chore: Bump PyYAML bounds #24731
Conversation
Codecov Report
@@ Coverage Diff @@
## master #24731 +/- ##
==========================================
+ Coverage 68.86% 68.89% +0.02%
==========================================
Files 1901 1901
Lines 73927 73927
Branches 8183 8183
==========================================
+ Hits 50913 50932 +19
+ Misses 20893 20874 -19
Partials 2121 2121
Flags with carried forward coverage won't be shown. Click here to find out more. see 5 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
LGTM
# via pre-commit | ||
tomli==2.0.1 |
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.
I'm not sure why this wasn't present previously. Possibly a problematic failed prior run of pip-compile-multi
and/or pinning requirements outside of said tool.
@@ -16,6 +16,8 @@ cmdstanpy==1.1.0 | |||
# via prophet | |||
contourpy==1.0.7 | |||
# via matplotlib | |||
convertdate==2.4.0 |
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.
See previous comment.
@@ -121,6 +123,8 @@ pyfakefs==5.2.2 | |||
# via -r requirements/testing.in | |||
pyhive[presto]==0.6.5 | |||
# via apache-superset | |||
pymeeus==0.5.12 |
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.
See previous comment.
@@ -111,7 +111,7 @@ def get_git_sha() -> str: | |||
"python-dotenv", | |||
"python-geohash", | |||
"pyarrow>=12.0.0, <13", | |||
"pyyaml>=5.4", | |||
"pyyaml>=6.0.0, <7.0.0", |
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.
A side note. It likely would be good (in a follow up PR) to:
- Add bounds to all packages.
- Ensure consistent version specification, i.e., adhere to the
<major>.<minor>.<patch>
version construct (if applicable).
SUMMARY
Bumping PyYAML bounds to address yaml/pyyaml#724 which is currently breaking CI.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
Recompiled the dependencies via,
ADDITIONAL INFORMATION