-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
CI: Add 3.12 builds #56174
CI: Add 3.12 builds #56174
Conversation
@@ -1437,7 +1437,9 @@ def test_deprecate_bytes_input(self, engine, read_ext): | |||
"byte string, wrap it in a `BytesIO` object." | |||
) | |||
|
|||
with tm.assert_produces_warning(FutureWarning, match=msg): | |||
with tm.assert_produces_warning( | |||
FutureWarning, match=msg, raise_on_extra_warnings=False |
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.
What's the extra warning here?
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 DeprecationWarning that originates in the excel libraries
FutureWarning, match="use 'date_format' instead" | ||
FutureWarning, | ||
match="use 'date_format' instead", | ||
raise_on_extra_warnings=False, |
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.
What's the extra warning here?
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.
same as above
Co-authored-by: Matthew Roeschke <[email protected]>
Can you disable the python dev builds too? (There should be instructions in that section of the yaml) |
Yep done, that should do the trick I think |
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.
thanks @phofl. |
Owee, I'm MrMeeseeks, Look at me. There seem to be a conflict, please backport manually. Here are approximate instructions:
And apply the correct labels and milestones. Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon! Remember to remove the If these instructions are inaccurate, feel free to suggest an improvement. |
* Backport PR #56174: CI: Add 3.12 builds * Update test_arrow.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: Patrick Hoefler <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Some CoW warnings broke for 3.11, so we should test at least CoW for 3.12 as well