-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Fix PR10 error and Clean up docstrings from functions related to RT05 errors #25132
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
2c4455c
Fix validation error RT05
thoo c87102f
Fix pep8
thoo d552569
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 03aaa92
fix merge conflict
thoo 36a610a
fix RT04
thoo c2e24b3
fix as recommended
thoo f5cfc8a
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 6e658f8
fix bullets
thoo 5304b9c
fix upon suggestions
thoo 7601aed
fix upon suggestions
thoo 128dadb
fix failing tests
thoo 3d3e408
replace with bullet
thoo 522e76d
typo
thoo 163e9e3
Retrigger :pandas-dev conda 27 failed
thoo b55b270
Merge remote-tracking branch 'upstream/master' into Rt05
thoo ba4f001
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 25e7503
update code_checks.sh
thoo 1824b99
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 1262632
Merge remote-tracking branch 'upstream/master' into Rt05
thoo e12ee2a
fix as recommended
thoo bfe30f8
fix some leftover
thoo d5d270b
Retrigger :pandas-devs failed
thoo 6ac909b
Retrigger :pandas-devs failed second time
thoo 4e4f24a
Retrigger :pandas-devs failed second time
thoo 283861f
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 953159c
fix at Series.unique
thoo 15fde16
Merge remote-tracking branch 'upstream/master' into Rt05
thoo 94e5279
add PR10
thoo 39ab010
drop PR10
thoo 64bd51b
fix PR10 error
thoo 7051e3c
fix as recommended
thoo a35f869
Merge remote-tracking branch 'upstream/master' into Rt05
thoo b847e4e
fix as recommended
thoo 2d62018
Merge remote-tracking branch 'upstream/master' into Rt05
thoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Merge remote-tracking branch 'upstream/master' into Rt05
* upstream/master: BUG: Fix exceptions when Series.interpolate's `order` parameter is missing or invalid (#25246) API: Ensure DatetimeTZDtype standardizes pytz timezones (#25254) Split Excel IO Into Sub-Directory (#25153) PR04 errors fix (#25157) DEPR: remove assert_panel_equal (#25238) BUG: pandas Timestamp tz_localize and tz_convert do not preserve `freq` attribute (#25247) Revert "BLD: prevent asv from calling sys.stdin.close() by using different launch method (#25237)" (#25253) REF/TST: resample/test_base.py (#25262) BUG: Duplicated returns boolean dataframe (#25234) CLN: Remove ipython 2.x compat (#25150) Refactor groupby group_add from tempita to fused types (#24954) CLN: For loops, boolean conditions, misc. (#25206) (Closes #25029) Removed extra bracket from cheatsheet code example. (#25032) BLD: prevent asv from calling sys.stdin.close() by using different launch method (#25237) BUG: Fix read_json orient='table' without index (#25170) (#25171) BUG: Fix regression in DataFrame.apply causing RecursionError (#25230) BUG-25061 fix printing indices with NaNs (#25202) DEPR: Add Deprecated warning for timedelta with passed units M and Y (#23264) DEPR: Remove Panel-specific parts of io.pytables (#25233) DEPR: remove tm.makePanel and all usages (#25231)
- Loading branch information
commit 1824b99ae8b5f77262c900129ad55cd33e749c0a
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are viewing a condensed version of this merge commit. You can view the full changes here.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Was there a reason for removing
PR10
here or just mistake?Uh oh!
There was an error while loading. Please reload this page.
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.
It is just a mistake from merge.Uh oh!
There was an error while loading. Please reload this page.
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.
PR10
is actually not included in the current check at line 245. So I wasn't sure someone excludePR10
but forgot to remove from the message.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.
Good catch. I think this was just missed in #25109 so makes sense to update here accordingly
Uh oh!
There was an error while loading. Please reload this page.
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.
PR10 is not passing the check withUpdate pandas.ExcelWriter.. versionadded:: 0.24.
. I am going to leave PR10 for now.