forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 1
BUG: to_json not serializing non-nanosecond numpy dt64 correctly (#53757) #37
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
Open
jamie-harness
wants to merge
16
commits into
main
Choose a base branch
from
pr-branch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
* DEPR: idxmin/idxmax with all-NA * Fix doctests Co-authored-by: jbrockmendel <[email protected]>
#24) * pandas-dev#13950 - Updated documentation on pandas alignment when setting * Update doc/source/user_guide/indexing.rst --------- Co-authored-by: raj-thapa <[email protected]> Co-authored-by: Matthew Roeschke <[email protected]>
* some check implmented * Include rules * Enable perflint * type Co-authored-by: Matthew Roeschke <[email protected]>
* DEPR: argsort * Catch warning in np.argsort test * Update doc/source/whatsnew/v2.1.0.rst * sort hwatnsew --------- Co-authored-by: jbrockmendel <[email protected]> Co-authored-by: Matthew Roeschke <[email protected]>
* PERF: ArrowDtype.__eq__ * cleanup Co-authored-by: Luke Manley <[email protected]>
* ENH: Support ffill/bfill on IntervalArray * gh ref Co-authored-by: jbrockmendel <[email protected]>
…andas-dev#53938) (#29) * add missing origin check * whats new * resolve edge cases, fix tests * update docs * cleanup * accomidate daylight savings time * correct docs and remove nested checks * slim down example * add back tz aware test Co-authored-by: Conrad Mcgee Stocks <[email protected]>
…s-dev#54216) (#30) * Removed InvalidComparison and LossySetItemError from docs * Revert "Removed InvalidComparison and LossySetItemError from docs" This reverts commit b9cf502. * internal errors * Examples to Notes on docstring * removed extra lines * merge w main and code_check change Co-authored-by: Dea María Léon <[email protected]>
* TST: add a test on mixed offsets for read_csv * change the location of the test * add parser to the test Co-authored-by: Natalia Mokeeva <[email protected]>
* REF: move values_for_json to EA * docstring Co-authored-by: jbrockmendel <[email protected]>
* User Guide correction on BaseIndexer * Add to explanation of BaseIndex Co-authored-by: Dea María Léon <[email protected]>
* BUG: Series.argsort validate axis * GH ref Co-authored-by: jbrockmendel <[email protected]>
In pyproject.toml, the baseline requirements for building are supposed to be listed. Many end users have a recent enough system-provided ninja, and don't need to install a new copy into every pandas isolated build virtual environment. This is handled inside meson-python itself, which dynamically adds an additional build requirement on ninja via the backend hook `get_requires_for_build_sdist`, but only if a suitable system version is not found. This is especially helpful on systems where an OS ninja is installed, but the platform is obscure enough that there are no PyPI "ninja" wheels, thus forcing `pip install pandas` to download an additional copy of the ninja source code and build it via cmake before beginning to install pandas itself. This is not guaranteed to work... The ninja entry in various CI or developer-recommended workflows is left alone because they are opt-in. In such contexts, it may make sense to be fairly specific about which providers you want to use for any given dependency, and that's a workflow preference encoded as a workflow build command. Since it doesn't prevent people from using the baseline install command, this commit makes no value judgment regarding it. Co-authored-by: Eli Schwartz <[email protected]>
…4246) (#36) * ENH: Implement interchange protocol for DatetimeTZDtype * Add type ignores * Add comment Co-authored-by: Matthew Roeschke <[email protected]>
…das-dev#53757) * BUG: to_json not serializing non-nanosecond numpy dt64 correctly * fix tests * change extraction mech * fix object array case * pre-commit * address comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
BUG: to_json not serializing non-nanosecond numpy dt64 correctly
fix tests
change extraction mech
fix object array case
pre-commit
address comments