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

Gh45857 #43

Closed
wants to merge 57 commits into from
Closed

Gh45857 #43

wants to merge 57 commits into from

Commits on Jun 8, 2022

  1. Configuration menu
    Copy the full SHA
    9667a59 View commit details
    Browse the repository at this point in the history
  2. mypy

    lukemanley committed Jun 8, 2022
    Configuration menu
    Copy the full SHA
    95093d6 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2022

  1. Configuration menu
    Copy the full SHA
    20c98c1 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2022

  1. Configuration menu
    Copy the full SHA
    27ab683 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2022

  1. Configuration menu
    Copy the full SHA
    8ab7209 View commit details
    Browse the repository at this point in the history
  2. infer dtype logic

    lukemanley committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    c596952 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a196212 View commit details
    Browse the repository at this point in the history
  4. expand test

    lukemanley committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    109eb2d View commit details
    Browse the repository at this point in the history
  5. try np.issubdtype

    lukemanley committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    7e969b1 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Configuration menu
    Copy the full SHA
    d9f9e12 View commit details
    Browse the repository at this point in the history
  2. ENH: Add check for character limit (pandas-dev#57103)

    Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
    luke396 and mroeschke authored Feb 1, 2024
    Configuration menu
    Copy the full SHA
    bb42fc0 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. CI: Add macOS M1 CI (pandas-dev#57163)

    * CI: Start testing on M1
    
    * install pytest-localserver from pip
    
    * typo
    
    * more CI adjustments and try to fix wheel builders
    
    * more fixes
    
    * auto workers on windows as well
    
    * fix wheel builders
    
    * Update wheels.yml
    
    * bump cibuildwheel
    
    * bump both
    
    * maybe fix windows as well
    lithomas1 authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    1d1672d View commit details
    Browse the repository at this point in the history
  2. BUG: Interchange protocol implementation allows non-string column nam…

    …es (pandas-dev#57174)
    
    * convert non-string colnames to strings in interchange protocol
    
    * remove irrelevant statement
    
    * informative error message if two columns end up becoming duplicates
    MarcoGorelli authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    8ed7dae View commit details
    Browse the repository at this point in the history
  3. DOC: fix PR02 errors in docstrings - pandas.core.groupby.SeriesGroupB…

    …y.transform and pandas.core.groupby.DataFrameGroupBy.transform (pandas-dev#57210)
    jordan-d-murphy authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    f20c5c9 View commit details
    Browse the repository at this point in the history
  4. DOC: fix PR02 errors in docstrings - pandas.core.window.rolling.Rolli…

    …ng.quantile, pandas.core.window.expanding.Expanding.quantile (pandas-dev#57211)
    jordan-d-murphy authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    70f47ee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    47418a1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    680b215 View commit details
    Browse the repository at this point in the history
  7. STY: Enable some passing rules (pandas-dev#57200)

    * Enable B006
    
    * Enable B011
    
    * Enable B019
    
    * Enable B020
    
    * Enable B020
    
    * Enable PYI and othe rule
    
    * Enable PLC1901
    
    * Use values instead of items
    
    * Use union
    
    * Ignore one case
    mroeschke authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    7736d4b View commit details
    Browse the repository at this point in the history
  8. TST/CLN: Assorted (pandas-dev#57199)

    * Split test_xs
    
    * Remove unused variables
    
    * Bump up tolerance
    mroeschke authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    e5e9603 View commit details
    Browse the repository at this point in the history
  9. CLN: pyproject.toml (pandas-dev#57201)

    * CLN: Remove old coverage branches and ignored warnings
    
    * CLN: Remove old coverage branches and ignored warnings
    
    * Undo comment out
    
    * Test removing warnings
    
    * Add back some ignores
    mroeschke authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    b2f2128 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fc05632 View commit details
    Browse the repository at this point in the history
  11. check ExtensionType in is_datetime64_any_dtype for array-likes (panda…

    …s-dev#57060)
    
    * check for ExtensionType in is_datetime64_any_dtype
    
    * use pre-commit
    
    * add test and move doc entry
    
    * check not date in test
    
    * fix condition
    
    * check type is not datetime.date
    
    * fix comparison
    
    * move description to ExtensionArray
    
    * return True for date types
    jmoralez authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    9c76d54 View commit details
    Browse the repository at this point in the history
  12. ENH: read_stata return non-nano (pandas-dev#55642)

    * ENH: read_stata return non-nano
    
    * GH ref
    
    * mypy fixup
    
    * update doctest
    
    * simplify
    
    * avoid Series.view
    
    * dont go through Series
    
    * move whatsnew
    
    * remove outdated whatsnew
    jbrockmendel authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    4663edd View commit details
    Browse the repository at this point in the history
  13. Series.str.find fix for pd.ArrowDtype(pa.string()) (pandas-dev#56792)

    * fix find
    
    * gh reference
    
    * add test for Nones
    
    * fix min version compat
    
    * restore test
    
    * improve test cases
    
    * fix empty string
    
    * inline
    
    * improve tests
    
    * fix
    
    * Revert "fix"
    
    This reverts commit 7fa21eb.
    
    * fix
    
    * merge
    
    * inline
    
    ---------
    
    Co-authored-by: Rohan Jain <rohanjain@microsoft.com>
    rohanjain101 and Rohan Jain authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    4f0870e View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    28bd79b View commit details
    Browse the repository at this point in the history
  15. Check for nan

    mroeschke committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    39bc9b6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    77188e0 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. BUG: Fixing broken link in getting_started.md (pandas-dev#57218)

    Fixing broken link in getting_started.md
    chrish935 authored Feb 3, 2024
    Configuration menu
    Copy the full SHA
    b51c38a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d1dd07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3c40392 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb16bb0 View commit details
    Browse the repository at this point in the history
  5. TYP: misc IO return types (pandas-dev#57228)

    * TYP: misc IO return types
    
    * isort
    twoertwein authored Feb 3, 2024
    Configuration menu
    Copy the full SHA
    e69a051 View commit details
    Browse the repository at this point in the history
  6. BUG: Raise if an aggregation function other than mean is used with ew…

    …m and times (pandas-dev#57225)
    
    * BUG: Raise if an aggregation function other than mean is used with ewm (pandas-dev#51695)
    
    * python 3.9 and mypy issue
    stevenschaerer authored Feb 3, 2024
    Configuration menu
    Copy the full SHA
    94d575a View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. Configuration menu
    Copy the full SHA
    937335f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3ea5f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc07895 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a7cd9b5 View commit details
    Browse the repository at this point in the history
  5. REGR: to_json converting nullable ints to floats (pandas-dev#57232)

    * REGR: to_json converting nullable ints to floats
    
    * Add skip
    phofl authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    ce50a85 View commit details
    Browse the repository at this point in the history
  6. DOC: Fix typo in merging.rst (pandas-dev#57242)

    Fix typo in merging.rst
    thadguidry authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    1bb4839 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    36d454a View commit details
    Browse the repository at this point in the history
  8. DEPR: Remove SettingWithCopyWarning (pandas-dev#56614)

    * DEPR: Remove SettingWithCopyWarning
    
    * Fixup
    
    * Remove docs
    
    * CoW: Boolean indexer in MultiIndex raising read-only error
    
    * Update
    
    * Update
    
    * Update
    phofl authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    bc58fe5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0a841ae View commit details
    Browse the repository at this point in the history
  10. Update type hint in io/formats/format.py (pandas-dev#57249)

    * Update type hint in format.py
    
    The brackets around the type hint broke the libcst parser. Since the brackets are not necessary for the type hint, they have been removed
    
    * Update v2.2.1.rst
    
    * Undo update to v2.2.1.rst
    
    Type annotation changes are not added to change log
    FrostMegaByte authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    b8b096e View commit details
    Browse the repository at this point in the history
  11. DOC: Replace pandas logo with a conditional image for light and dark … (

    pandas-dev#57223)
    
    DOC: Replace pandas logo with a conditional image for light and dark themes
    
    Replaced the static pandas logo with a `picture` tag that displays a different logo based on the color scheme. In light mode, the original logo is shown, while in dark mode, a white version of the logo is displayed for better visibility.
    LakshmanKishore authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    e777b07 View commit details
    Browse the repository at this point in the history
  12. BUG: ensure_string_array might modify read-only array inplace (pandas…

    …-dev#57212)
    
    * BUG: ensure_string_array might modify read-only array inplace
    
    * BUG: ensure_string_array might modify read-only array inplace
    
    * Fix pyarrow installed error
    phofl authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    ba76f73 View commit details
    Browse the repository at this point in the history
  13. Fix errors in docstring for pandas.PeriodIndex (pandas-dev#57247)

    * Fix docstring errors
    
    * Update
    yuanx749 authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    a28de76 View commit details
    Browse the repository at this point in the history
  14. DOC: fix PR02 errors in docstring for pandas.Series.rename_axis (pand…

    …as-dev#57239)
    
    * DOC: fix PR02 errors in docstring for pandas.Series.rename_axis
    
    * Refactor Series.rename_axis and NDFrame.rename_axis to have separate docstrings
    
    * removed unnecessary columns ref in docstring for Series
    
    * removed another unnecessary columns ref in docstring for Series
    jordan-d-murphy authored Feb 4, 2024
    Configuration menu
    Copy the full SHA
    266bd4c View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    8848692 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46fd711 View commit details
    Browse the repository at this point in the history
  3. DOC: fix PR02 errors in docstrings of Index subclasses (pandas-dev#57261

    )
    
    * DOC: fix PR02 errors in docstrings of Index subclasses
    
    * mypy
    yuanx749 authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    c0d235f View commit details
    Browse the repository at this point in the history
  4. DOC: Updated docstring for set_option (pandas-dev#57235)

    * Updated docstring and exceptions raised
    
    * updated code_checks.sh
    
    * [pre-commit.ci] auto fixes from pre-commit.com hooks
    
    for more information, see https://pre-commit.ci
    
    * testing fix for doc  build
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    jrmylow and pre-commit-ci[bot] authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    3c53542 View commit details
    Browse the repository at this point in the history
  5. Use ruff to detect banned import (pandas-dev#57184)

    * Use ruff to detect banned import
    
    * Combine rules
    tqa236 authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    8a8c408 View commit details
    Browse the repository at this point in the history
  6. WEB: Using Bootstrap icon instead of font awesome icons (pandas-dev#5…

    …7226)
    
    * Using bootstrap icon in place of font awesome
    
    * bootstrap icon added
    
    * class update
    
    * class update
    koushik-rout-samsung authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    9d50b3c View commit details
    Browse the repository at this point in the history
  7. TYP: misc Index return types (pandas-dev#57256)

    * TYP: misc Index return types
    
    * add IndexT to ignore list
    twoertwein authored Feb 5, 2024
    Configuration menu
    Copy the full SHA
    77b4824 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8baee5d View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Configuration menu
    Copy the full SHA
    17aa2ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c031c4d View commit details
    Browse the repository at this point in the history