-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
REGR: GH50127 fixes error for converting to / creating Index with dtype S3
#51559
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
Closed
Closed
Changes from 17 commits
Commits
Show all changes
587 commits
Select commit
Hold shift + click to select a range
d2535c1
REF: Decouple Series.apply from Series.agg (#53400)
topper-123 bcfdd62
DOC: Fixing EX01 - Added examples (#53536)
DeaMariaLeon 2a8880d
TST: Add test for boxable categories GH#21658 (#53524)
liang3zy22 80e2c1e
CI: Bump builds to 3.11, update numpy nightly wheels location (#53508)
mroeschke 17cd454
DEPR: use_inf_as_na (#53494)
jbrockmendel 365f287
BUG: `groupby` with column selection not returning tuple when groupin…
Charlie-XIAO db3f6bc
TST: Remove inheritance from pandas/tests/indexes (#53544)
mroeschke 1007f66
BUG: Series.str.split(expand=True) for ArrowDtype(pa.string()) (#53532)
lukemanley 6eeab8d
TST: Clean up finalize tests (#53543)
lithomas1 0d509c8
BUG: Fix metadata propagation in squeeze and describe (#53538)
lithomas1 ba234b7
DEPR: make Series.agg aggregate when possible (#53325)
topper-123 b085f87
DOC: Update release process (#53435)
datapythonista 1100505
DOC: Fixing EX01 - Added more examples (#53540)
DeaMariaLeon 25460dd
TST: Add test for timedelta of fraction GH#9048 (#53552)
liang3zy22 ff053ed
TST: Add test for complex categories GH#16399 (#53551)
liang3zy22 ac08921
DOC: Fixing EX01 - Added examples (#53554)
DeaMariaLeon 1ccd611
DEPR: fillna method kwd (#53496)
jbrockmendel 6ee1146
ENH: Numba groupby support multiple labels (#53556)
lithomas1 293d394
Update 02_read_write.rst (#53559)
okjustin fb4ec6b
DOC: Fixing EX01 - Added examples (#53561)
DeaMariaLeon b7d801e
CI/DEPS: Add xfail(strict=False) to related unstable sorting changes …
mroeschke 0751315
DOC: Fixing EX01 - Added examples (#53564)
DeaMariaLeon 1156156
Upload nightlies to new location (#53341)
jarrodmillman eacb1e4
CLN: Cleanup after CoW setitem PRs (#53142)
phofl d10509c
DOC: Fixing EX01 - Added examples (#53573)
DeaMariaLeon 6dd5932
TST: Use more pytest fixtures (#53567)
mroeschke 338b9d0
TST: Use fixtures instead of TestPlotBase (#53550)
mroeschke 5591590
DOC: create a table for period aliases (#53530)
natmokval fd17cf6
DOC: Fixing EX01 - Added examples (#53575)
DeaMariaLeon 0b86e3e
DEPR `fill_method` and `limit` keywords in `pct_change` (#53520)
Charlie-XIAO 992ea20
TST: Use monkeypatch instead of custom func for env variables (#53563)
mroeschke 1ac4da5
CI: Ensure nightly wheels are uploaded instead of just sdist (#53578)
mroeschke dd52206
TYP: Fix typing issues, mainly Something => IndexLabel (#53469)
behrenhoff b9e7e52
Corrected minor typos in the paragraph below 'Formatting the Display'…
kyunghei ec94ef1
DOC: Fixing EX01 - Added examples (#53619)
DeaMariaLeon 9288a28
CI: Fix the deprecation bot (#53593)
lithomas1 84dbd07
Bump pypa/cibuildwheel from 2.13.0 to 2.13.1 (#53614)
dependabot[bot] 382b793
TST: Mark numba & threading tests as single cpu (#53608)
mroeschke 53a8ef5
DOC: pd.Period and pd.period_range should document that they accept d…
ABizzinotto 38fbb21
DOC: Fixed inconsistencies in pandas.DataFrame.pivot_table docstring …
tpaxman d92a0c9
ENH: Implement PandasArray, DTA, TDA interpolate (#53594)
jbrockmendel 69c0701
PERF: Series.str.split(expand=True) for pyarrow-backed strings (#53585)
lukemanley 4c8d98f
DOC: Multi-conditional examples added to .loc docstring (#53572)
sweisss 771fc03
DEPR: pd.value_counts (#53493)
jbrockmendel 11eefe4
REF: move interpolate validation to core.missing (#53580)
jbrockmendel cdc76fb
ENH: Groupby.transform support string input with engine=numba (#53579)
lithomas1 2c04ce9
DEPR: NDFrame.interpolate with ffill/bfill methods (#53607)
jbrockmendel 33cb5a4
BUG: clean_fill_method failing to raise (#53620)
jbrockmendel 6b199d5
PDEP-9: Allow third-party projects to register pandas connectors with…
datapythonista 7b7923b
TST: Add test for apply cast types GH#9506 (#53591)
liang3zy22 e92fe43
BUG: DataFrame.stack with sort=True and unsorted MultiIndex levels (#…
rhshadrach ea64c4a
ENH: Series.str.join for ArrowDtype(pa.string()) (#53646)
lukemanley cea06cd
DEPR: interpolate with object dtype (#53638)
jbrockmendel 50f4af3
BUG: interpolate with complex dtype (#53635)
jbrockmendel 038b628
DOC: Added links to GitHub tutorials/resources for Forking Workflow i…
ssharp0 847224c
TST: Refactor slow test (#53610)
mroeschke 55afd64
BUG: RangeIndex.union(sort=True) with another RangeIndex (#53495)
mroeschke 4c84440
ENH: Series.explode to support pyarrow-backed list types (#53602)
lukemanley 341e6ee
CI: Build pandas even if doctests fail (#53657)
mroeschke 0294273
BUG: groupby sum turning `inf+inf` and `(-inf)+(-inf)` into `nan` (#5…
Charlie-XIAO 376bbf7
DEPR: method, limit in NDFrame.replace (#53492)
jbrockmendel 1ff9bd0
PERF: Series.str.get_dummies for ArrowDtype(pa.string()) (#53655)
lukemanley ea2b7a6
TYP: core.missing (#53625)
jbrockmendel 1dd1695
CI: Attempt to fix wheel builds (#53670)
lithomas1 8af68c1
DOC: Fixing EX01 - Added examples (#53647)
DeaMariaLeon 2eebde9
CI/TST: Mark test_to_read_gcs as single_cpu (#53677)
mroeschke d9d981d
BUG/CoW: is_range_indexer can't handle very large arrays (#53672)
lithomas1 ff2165c
ENH: Allow numba aggregations to return non-float64 results (#53444)
lithomas1 47d9f1d
DOC: Move Whatsnew for CoW fix (#53690)
lithomas1 4a70a1e
CI: Adjust tests for release of numpy 1.25 (#53715)
lithomas1 fc8605c
DEPR: deprecate obj argument in GroupBy.get_group (#53571)
natmokval ba2f0ae
Use _values_for_factorize by default for hashing ExtensionArrays (#53…
jorisvandenbossche a499071
CI: ignore experimental warnings from numba (#53726)
MarcoGorelli e846c66
CI: fix `pytest scripts` (#53727)
MarcoGorelli 536c3c8
TST: add test for reindexing rows with matching index uses shallow co…
jorisvandenbossche 1b23a29
BUG: IntervalIndex.get_indexer raising for read only array (#53703)
phofl 06fc003
ERR: Shorten traceback in groupby _cython_agg_general (#52992)
rhshadrach 7ab3304
CoW: Add lazy copy mechanism to DataFrame constructor for dict of Ind…
phofl 660fc11
CI: fix numba typing (#53730)
MarcoGorelli 9a0244e
DEPR: deprecate unit parameters ’T’, 't', 'L', and 'l' (#53557)
natmokval 429053e
CoW: Return read-only array in Index.values (#53704)
phofl f424ff5
DOC: Fixing EX01 - Added examples (#53689)
DeaMariaLeon 2cb06e8
TST: Use more pytest fixtures (#53679)
mroeschke f45d679
BUG: resampling empty series loses time zone from dtype (#53736)
Charlie-XIAO 8eca98b
BUG: concat coercing arrow to object with null type (#53702)
phofl 98bd8a8
PERF: concatenation of MultiIndexed objects (MultiIndex.append) (#53697)
lukemanley b571deb
TST: Add test for duplcated columns and usecols GH#11823 (#53683)
liang3zy22 e3ea4ff
BUG: series with complex nan (#53682)
Charlie-XIAO 9ca7146
BUG: astype('category') on dataframe backed by non-writeable arrays r…
lukemanley 00cad1a
TST: xfail `test_rolling_var_numerical_issues` on Mac (#53661)
Jython1415 36c2a48
BUG: Adds missing raises for numpy.timedelta64[M/Y] in pandas.Timedel…
mcgeestocks 1efeb2b
DEPR: Deprecate literal json string input to read_json (#53409)
rmhowe425 5e78c9d
DOC: Add to_sql example of conflict with `method` parameter (#53264)
mroeschke 10ae3d0
BUG: reindex with expansion and non-nanosecond dtype (#53505)
mroeschke 56f626d
BUG: convert_dtype(dtype_backend=nullable_numpy) with ArrowDtype (#53…
mroeschke 3ba7e49
BUG: Indexing a timestamp ArrowDtype Index (#53652)
mroeschke 0d53574
TYP: reshape.merge (#53752)
jbrockmendel 647b851
TST: Use more pytest fixtures (#53750)
mroeschke 534ca56
BUG: DataFrame construction with dictionary ArrowDtype columns (#53654)
mroeschke fc7ca29
DOC: point out that only period aliases are valid for the method asfr…
natmokval 0a65e75
DOC: Fixing EX01 - Added examples (#53741)
DeaMariaLeon 1e7011d
DOC: operator wrapper names do not match math operators (#53765)
rsm-23 ccaf3a7
DOC: Fixing EX01 - Added examples (#53725)
DeaMariaLeon 063aa77
DEPR: Deprecate DataFrame.last and Series.last (#53710)
rmhowe425 f5c229b
BUG / CoW: Series.transform not respecting CoW (#53747)
phofl c840305
Revert "BUG: DataFrame.stack with sort=True and unsorted MultiIndex l…
rhshadrach 11673ac
TST: refactor data path for xml tests (#53766)
fangchenli aa6d99f
TST: Reduce memory pressure of plotting tests (#53660)
mroeschke 07bf403
DOC note pytest bump (#53768)
MarcoGorelli 8fd4909
COMPAT: Remove np.compat (#53774)
mroeschke 554899a
Added suggested new line to fix doc code example (#53775)
rahulsiloniya 1418b11
TST: Make test_complibs deterministic (#53754)
mroeschke c318752
TST: Refactor some slow tests (#53784)
mroeschke 3c4f5a5
TYP: reshape.merge (#53780)
jbrockmendel 1098cf9
TYP: annotate testing decorators with pytest.MarkDecorator (#53794)
fangchenli cc7c717
TST/CLN: use fixture for data path in all xml tests (#53790)
fangchenli 7cf6047
REF: remove unused merge args (#53789)
jbrockmendel 0f63a26
BUG: combine_first ignoring others columns if other is empty (#53792)
phofl c453932
PERF: concat in no-reindexing case (#53772)
jbrockmendel 10db1a3
BUG: bad display for complex series with nan (#53764)
Charlie-XIAO 05c9e3f
CLN: assorted (#53742)
jbrockmendel 71122ea
DOC: Fixing EX01 - Added examples (#53796)
DeaMariaLeon 28e8f12
Update governance.md (#53814)
computerscienceiscool cdb02e5
BUG: inconsistent behavior of DateOffset #47953 (#53681)
rsm-23 dc52328
DOC: pd.Period and pd.period_range should document that they accept d…
ABizzinotto ff74410
CLN: PDEP6 precusor (#53815)
MarcoGorelli 88aca46
DOC: Add code-formatting and cross-reference links to `read_csv` docs…
tpaxman 05773ec
TST: Refactor more slow tests (#53800)
mroeschke 7fd6759
TST: Refactor s3 resource (#53803)
mroeschke bedd28e
REF: simplify merge code (#53808)
jbrockmendel 781de08
TST: Add test for loc expansion GH13829. (#53812)
liang3zy22 5f74e35
REF: de-duplicate Block.diff, remove axis kwd (#53807)
jbrockmendel 2449dcd
PERF: pandas.core.sorting.compress_group_index for already sorted val…
lukemanley 04ea554
BUG: DataFrame.stack sorts columns (#53787)
rhshadrach 940605e
Fixed #52234 (#53698)
ssche 7dc9ae0
TST/CI: Skipif test_complibs (#53819)
mroeschke d9595b7
REF: separate out cross-merge, make less stateful (#53810)
jbrockmendel af27d92
REF: implement NDFrame._from_mgr (#52132)
jbrockmendel 90adfff
REF: implement Manager.pad_or_backfill (#53822)
jbrockmendel 4d60f63
PERF: avoid unnecessary casting in merge (#53771)
jbrockmendel 42b5fbb
TST / CoW: Add test for mask (#53745)
phofl 6be29bf
DOC: Fixing EX01 - Added examples (#53818)
DeaMariaLeon 2d7afc1
BUG: Fix string formatting (#53855)
yuanx749 4d52e61
DOC: parameterize "See Also" content in `read_table` and `read_csv` s…
tpaxman 2db330a
TST: Refactor more slow tests (#53820)
mroeschke 4f9b34e
DOC: update `read_clipboard` docstring to have proper formatting and …
tpaxman 6da887b
DOC: Add description to `read_csv` chunksize parameter regarding numb…
tpaxman e6ee9eb
DOC: fix inconsistencies in `read_csv` docstring type descriptions (#…
tpaxman 526d767
BUG: complex Series/DataFrame display all complex nans as `nan+0j` (#…
Charlie-XIAO 8a2d647
BUG: DataFrame.shift(axis=1) with EADtype (#53832)
jbrockmendel 29c6252
REF: implement PandasArray.pad_or_backfill (#53827)
jbrockmendel 09e0533
BUG: to_sql fails for pyarrow date dtype (#53854) (#53856)
NMAC427 b8cd0c1
TYP: Fix pad_or_backfill limit_area type (#53866)
mroeschke 8457fbc
TST: Clean plotting/test_series (#53865)
mroeschke 80c1d5f
TST: Clean plotting/test_misc.py (#53864)
mroeschke 675d11e
TST: Simplify more slow tests (#53862)
mroeschke 48fb2b7
BUG: merge with mismatched index dtypes failing to raise (#53870)
jbrockmendel 376ac9a
REF: share methods AM/BM (#53859)
jbrockmendel d34e4a6
TST: increase coverage of asfreq (#53861)
natmokval 883e1d4
DOC: Updated docstring for Period class (#53879)
rsm-23 946d056
BUG: fixes weekday for dates before 1752 (#53795)
mcgeestocks cc20ddc
DOC: Fixing EX01 - Added examples (#53883)
DeaMariaLeon 8040a88
TST: Use pytest-localserver instead of making network connections (#5…
mroeschke 69925c0
TST: Clean plotting/frame/test_frame.py (#53873)
mroeschke d731ed4
CLN: unused args in pad_or_backfill (#53872)
jbrockmendel ff919d0
CLN: use `lib.no_default` instead of `lib.NoDefault` in `.pivot` (#53…
Charlie-XIAO 2bc7cdc
DOC Remove incorrect line from dropna docs (#53876)
Pawel-Kranzberg a45170e
REF: simplify _from_mgr constructors, use in more places (#53871)
jbrockmendel 5c7dd91
REF: helpers to de-duplicate CoW checks (#53882)
jbrockmendel 0bf1e55
REF: remove axis keyword from Manager/Block.shift (#53845)
jbrockmendel c642d9b
DEPR: Remove bytes input for read_excel (#53830)
rmhowe425 21cf055
REF: de-duplicate methods, remove unused kwd (#53886)
jbrockmendel 466f5cb
REF: de-duplicate _gotitem helper (#53874)
jbrockmendel dd36fdc
CI: Fix pytest scripts and doc failure (#53888)
mroeschke 403e111
DOC: Fixing EX01 - Added examples (#53889)
DeaMariaLeon 9dcc075
DOC: Fixing EX01 - Added examples (#53880)
DeaMariaLeon ea90f26
TST: add test with freq=2M for period_array from datetime64 (#53890)
natmokval abe4fc5
DOC: fix asv test results link in contributors doc (#53902)
Charlie-XIAO 15edb4f
BUG: df constructor not copying ea backed series (#53744)
phofl 97560f8
REF: de-duplicate CoW helpers (#53899)
jbrockmendel de6e342
TST: Clean plotting/frame/test_frame.color.py (#53894)
mroeschke 65900fc
BUG: DataFrame.stack sometimes sorting the resulting index (#53825)
rhshadrach 1c06cb8
DEPR: Remove literal string input for read_html (#53805)
rmhowe425 64e605f
DOC: Fixing EX01 - Added examples (#53906)
DeaMariaLeon 543d9ea
DOC: Update release date for 2.0.3 (#53897)
lithomas1 f1e7380
TST: Refactor slow tests (#53891)
mroeschke 223ed54
ENH: EA.interpolate (#53659)
jbrockmendel 0d46877
TST: Clean tests/plotting/test_frame.py misc (#53914)
mroeschke 542e590
DEPR: downcast keyword (#53671)
jbrockmendel 70e61dd
CI: Don't rebuild pandas before running tests (#53919)
mroeschke 3ada856
TST: Clean plotting tests (#53917)
mroeschke a123c74
TST: add the parameter MonthEnd(2) to 2 tests with freq= 2M (#53916)
natmokval bf8e1e6
ENH / CoW: Add lazy copy to eval (#53746)
phofl 21203ed
DOC: remove unnecessary note about EA values_for_factorize from 2.0.3…
jorisvandenbossche c760da4
DOC: Changed M to MS in examples (#53927)
DeaMariaLeon 7d7ab0c
DOC: Fixing EX01 - Added examples (#53909)
DeaMariaLeon 0800f80
DOC: EX01 (`Index` and `RangeIndex`) (#53920)
Charlie-XIAO 6b60a27
CI: linting check to ensure `lib.NoDefault` is only used for typing (…
Charlie-XIAO a30c891
REF: separate Block.pad_or_backfill from interpolate (#53918)
jbrockmendel e6e7ef2
BUG: fix Series.apply(..., by_row), v2. (#53601)
topper-123 cc38032
CI: Bump 32 bit and musl linux jobs to PY3.11 (#53937)
mroeschke eff369d
CLN: assorted (#53932)
jbrockmendel c9fa159
DOC: EX01 ({Categorical, Interval, Multi, Datetime, Timedelta}-Index)…
Charlie-XIAO 665bf62
TST: add test with freq=2M to increase coverage of to_period (#53940)
natmokval 2390932
DOC: Fixing EX01 - Added examples (#53930)
DeaMariaLeon b27e073
DOC: Fixing EX01 - Added examples (#53946)
DeaMariaLeon 4049f40
CI/TST: Misc test cleanups (#53931)
mroeschke 1d1a466
CLN : Removed unnecessary numba-compat code (#53947)
PrathumP 04c6113
REF: remove axis keyword from PandasArray.pad_or_backfill (#53941)
jbrockmendel 7605126
TST: Always close figures in plotting tests (#53929)
mroeschke b27ee0f
TST: Concatenating categorical datetime columns (#53949)
rsm-23 f05da69
DOC/WEB: update Google Analytics id (#53954)
jorisvandenbossche 24ff1ce
DOC: fix pandas-coverage link (#53971)
MarcoGorelli 8e70ba3
PERF: ffill/bfill with non-numpy dtypes (#53950)
jbrockmendel 44e6f52
ENH: Don't fragment manager if convert is no-op (#53977)
phofl 12ee2c8
DEPR: start with Deprecation instead of FutureWarning for NDFrame._da…
jorisvandenbossche a84183b
DOC: Fixing EX01 - Added examples (#53948)
DeaMariaLeon 6feb79f
DOC: Fixing EX01 - Added examples (#53985)
DeaMariaLeon bbfa28f
DOC: Fixing EX01 - Added examples (#53982)
DeaMariaLeon f5e7b89
DEPR: GroupBy.quantile with bool dtype (#53975)
jbrockmendel 61715da
DOC: Added note for `corr` (#53972)
rsm-23 bff3182
Test CoW for multiple Python versions (#53981)
phofl e5f0a1a
Update ecosystem.md (#53980)
sqali 6312cbb
CoW: Add warning for chained assignment with fillna (#53779)
phofl 6815db0
DOC: Fixing EX01 - Added examples (#54004)
DeaMariaLeon e489ca6
BUG: Fix mamba can't create environment issue (#54017)
liang3zy22 cdd73fd
CLN: tests.groupby.test_any_all (#53998)
rhshadrach 3f26bf6
BUG: missing fstring (#53990)
jbrockmendel 1dfcf11
BUG: ignoring sort in DTA.factorize (#53992)
jbrockmendel 5863216
CLN: remove unreachable, unnecessary axis kwd (#53991)
jbrockmendel 01613fb
DOC: Clean up CSV sniffing and chunking examples (#53987)
wjandrea d39d465
REF: helper for merge casting (#53976)
jbrockmendel 84d86d0
CLN: Consolidate Dependencies (#53863)
mroeschke 732b6be
CLN: Remove unnecessary pa version check (#54012)
phofl a4154b6
DOC: Added to 10mins guide (#54010)
rsm-23 130471e
CLN: is_mixed_type, is_homogeneous_type (#54008)
jbrockmendel f217bf9
REF: swap axis before calling Manager.pad_or_backfill (#53989)
jbrockmendel 0eb0b0e
DOC: Updated pandas extension list (#53960)
rsm-23 25249e4
API: add `NaTType` and `NAType` to `pandas.api.typing` (#53958)
Charlie-XIAO 22d21bc
DEPR: downcast keyword in Index.fillna (#53956)
jbrockmendel cace5b8
ENH: Use explicit methods instead of regex pattern in arrow strings (…
phofl 817ec46
DEPR: Replacing builtin and NumPy funcs in agg/apply/transform (#53974)
rhshadrach b533a22
TST: add test to check dtype after replacing values in categorical Se…
natmokval d6e6aa4
TST: Mark subprocess tests as single_cpu (#54026)
mroeschke fa19b70
DOC: Fix typos in groupby user guide (#54041)
penelopeysm c2134a6
DOC: add backticks to docstrings (#54030)
wcgonzal 43a405b
CI: Clean GH Action caches weekly (#53753)
mroeschke 689620a
BUG: Fix failing hash funciton for certain non-ns resolution `Timedel…
harahu 99fb314
BUG: Fix pandas compatibility with Python installations lacking bzip2…
MilesCranmer b1cbea4
Set copy=false after new data array, and adjust texts
Daquisu 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
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
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
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
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
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.
"when created or converted" -> "where creating or converting"?