-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
API: Revert breaking .values
changes
#24163
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
API: Revert breaking .values
changes
#24163
Conversation
User-facing change: `Series[period].values` nad `Series[interval].values` continues to be an ndarray of objects. Recommend ``.array`` instead. There are a handful of related places in pandas where we assumed that ``Series[EA].values`` was an EA. Part of pandas-dev#23995
Hello @TomAugspurger! Thanks for submitting the PR.
|
Codecov Report
@@ Coverage Diff @@
## master #24163 +/- ##
==========================================
+ Coverage 92.2% 92.2% +<.01%
==========================================
Files 162 162
Lines 51700 51712 +12
==========================================
+ Hits 47670 47682 +12
Misses 4030 4030
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #24163 +/- ##
==========================================
+ Coverage 92.2% 92.2% +<.01%
==========================================
Files 162 162
Lines 51700 51712 +12
==========================================
+ Hits 47670 47682 +12
Misses 4030 4030
Continue to review full report at Codecov.
|
lgtm |
Only failure was the Azure lining, which has since been fixed on master. @jorisvandenbossche IIRC, you preferred that |
That might be :-) In any case, since then we added |
Sounds good. Merging. |
* API: Revert breaking `.values` changes User-facing change: `Series[period].values` nad `Series[interval].values` continues to be an ndarray of objects. Recommend ``.array`` instead. There are a handful of related places in pandas where we assumed that ``Series[EA].values`` was an EA. Part of pandas-dev#23995
* API: Revert breaking `.values` changes User-facing change: `Series[period].values` nad `Series[interval].values` continues to be an ndarray of objects. Recommend ``.array`` instead. There are a handful of related places in pandas where we assumed that ``Series[EA].values`` was an EA. Part of pandas-dev#23995
User-facing change:
Series[period].values
nadSeries[interval].values
continues to be an ndarray of objects. Recommend
.array
instead.There are a handful of related places in pandas where we assumed that
Series[EA].values
was an EA.Part of #23995