Skip to content
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

REGR: GH50127 fixes error for converting to / creating Index with dtype S3 #51559

Closed
wants to merge 587 commits into from

Conversation

Daquisu
Copy link
Contributor

@Daquisu Daquisu commented Feb 22, 2023

@simonjayhawkins simonjayhawkins added Regression Functionality that used to work in a prior pandas version Astype Index Related to the Index class or subclasses labels Feb 22, 2023
@Daquisu Daquisu changed the title BUG: GH50127 fixes error for converting to / creating Index with dtype S3 REGR: GH50127 fixes error for converting to / creating Index with dtype S3 Feb 28, 2023
@Daquisu
Copy link
Contributor Author

Daquisu commented Feb 28, 2023

CI check error seems to be unrelated, since it appears on all latest CIs.

No error other than that, so happy to review it now

@jorisvandenbossche jorisvandenbossche added this to the 2.0 milestone Mar 1, 2023
@MarcoGorelli MarcoGorelli modified the milestones: 2.0, 2.1 Mar 27, 2023
@MarcoGorelli
Copy link
Member

MarcoGorelli commented Mar 27, 2023

moving off the 2.0 milestone as this is a regression from 1.5

EDIT: sorry, this one worked on 1.5. Is it a blocker?

@MarcoGorelli MarcoGorelli modified the milestones: 2.1, 2.0 Mar 27, 2023
@@ -1399,6 +1399,7 @@ Other
- Bug in incorrectly accepting dtype strings containing "[pyarrow]" more than once (:issue:`51548`)
- Bug in :meth:`Series.searchsorted` inconsistent behavior when accepting :class:`DataFrame` as parameter ``value`` (:issue:`49620`)
- Bug in :func:`array` failing to raise on :class:`DataFrame` inputs (:issue:`51167`)
- Bug in :class:`Index` when created or converted to the numpy dtype S3 would raise ``NotImplementedError`` (:issue:`50127`)
Copy link
Member

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"?

@datapythonista datapythonista modified the milestones: 2.0, 2.1 Apr 3, 2023
@datapythonista
Copy link
Member

Release day, moving this to the 2.1 milestone.

@datapythonista datapythonista modified the milestones: 2.1, 2.0.1 Apr 3, 2023
@datapythonista
Copy link
Member

Sorry, my bad, the next release should be 2.0.1, changed the milestone again.

@Daquisu
Copy link
Contributor Author

Daquisu commented Apr 22, 2023

Ubuntu / Numpy Dev (pull_request) is failing on all recent PRs, so I guess it is not related to the changes done here.

@datapythonista datapythonista modified the milestones: 2.0.1, 2.0.2 Apr 23, 2023
@datapythonista datapythonista modified the milestones: 2.0.2, 2.0.3 May 26, 2023
rsm-23 and others added 16 commits July 8, 2023 12:28
* Updated extension list

* Fixed typo
)

* API: add NaTType and NAType to pandas.api.typing

* updated test
* DEPR: downcast keyword in Index.fillna

* GH ref

* docstring fixup
…andas-dev#54006)

* ENH: Use explicit methods instead of regex pattern in arrow strings

* Fixup

* Fix
…s-dev#53974)

* DEPR: Replacing builtin and NumPy funcs in agg/apply/transform

* mypy fixup
…ries inplace (pandas-dev#53993)

* TST: add test to check dtype after replacing categorical Series inplace

* replace tm.assert_index_equal with tm.assert_series_equal
* CI: Clean GH Action caches older than 1 week

* purge weekly instead

* ensure we list a lot of caches
…ta`s (pandas-dev#54037)

* Add reproducing test

* Attempt fix

* Add GH reference

* Add whatsnew entry

* Pre-commit after the fact
… headers (pandas-dev#53858)

* BUG: Make bz2 import optional

* CLN: Create `get_bz2_file` to match `get_lzma_file`

* DOC: Add bz2 bugfix to changelog

* TST: Test bz2 non-import works

* TST: Test bz2 non-import from subprocess

* TST: Fix bz2 non-import test

* TST: Fix indentation issues in bz2 import test

* MAINT: Clean up merge commit

* Mark bz2 missing test with `single_cpu`
@jbrockmendel
Copy link
Member

this was close to ready, re-opening. @Daquisu can you merge main and address any outstanding comments

@jbrockmendel
Copy link
Member

@Daquisu can you merge main and address any outstanding comments? ill make reviewing this a priority

@mroeschke
Copy link
Member

Thanks for the pull request, but it appears to have gone stale. If interested in continuing, please merge in the main branch, address any review comments and/or failing tests, and we can reopen.

@mroeschke mroeschke closed this Nov 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Astype Index Related to the Index class or subclasses Regression Functionality that used to work in a prior pandas version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

REGR: Index.astype(<numpy string dtype>) started failing