-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into depr-internals
- Loading branch information
Showing
267 changed files
with
10,250 additions
and
6,031 deletions.
There are no files selected for viewing
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,14 +137,27 @@ jobs: | |
shell: bash -el {0} | ||
run: echo "sdist_name=$(cd ./dist && ls -d */)" >> "$GITHUB_ENV" | ||
|
||
- name: Build wheels | ||
- name: Build normal wheels | ||
if: ${{ (env.IS_SCHEDULE_DISPATCH != 'true' || env.IS_PUSH == 'true') }} | ||
uses: pypa/[email protected] | ||
with: | ||
package-dir: ./dist/${{ matrix.buildplat[1] == 'macosx_*' && env.sdist_name || needs.build_sdist.outputs.sdist_file }} | ||
env: | ||
CIBW_PRERELEASE_PYTHONS: True | ||
CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }} | ||
|
||
- name: Build nightly wheels (with NumPy pre-release) | ||
if: ${{ (env.IS_SCHEDULE_DISPATCH == 'true' && env.IS_PUSH != 'true') }} | ||
uses: pypa/[email protected] | ||
with: | ||
package-dir: ./dist/${{ matrix.buildplat[1] == 'macosx_*' && env.sdist_name || needs.build_sdist.outputs.sdist_file }} | ||
env: | ||
# The nightly wheels should be build witht he NumPy 2.0 pre-releases | ||
# which requires the additional URL. | ||
CIBW_ENVIRONMENT: PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple | ||
CIBW_PRERELEASE_PYTHONS: True | ||
CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }} | ||
|
||
- name: Set up Python | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
|
This file contains 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 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 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 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 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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ Version 2.1 | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
v2.1.3 | ||
v2.1.2 | ||
v2.1.1 | ||
v2.1.0 | ||
|
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,4 +52,4 @@ Other | |
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
.. contributors:: v2.1.0..v2.1.1|HEAD | ||
.. contributors:: v2.1.0..v2.1.1 |
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
.. _whatsnew_213: | ||
|
||
What's new in 2.1.3 (November ??, 2023) | ||
--------------------------------------- | ||
|
||
These are the changes in pandas 2.1.3. See :ref:`release` for a full changelog | ||
including other versions of pandas. | ||
|
||
{{ header }} | ||
|
||
.. --------------------------------------------------------------------------- | ||
.. _whatsnew_213.regressions: | ||
|
||
Fixed regressions | ||
~~~~~~~~~~~~~~~~~ | ||
- | ||
- | ||
|
||
.. --------------------------------------------------------------------------- | ||
.. _whatsnew_213.bug_fixes: | ||
|
||
Bug fixes | ||
~~~~~~~~~ | ||
- Bug in :meth:`DatetimeIndex.diff` raising ``TypeError`` (:issue:`55080`) | ||
- Bug in :meth:`Index.isin` raising for Arrow backed string and ``None`` value (:issue:`55821`) | ||
|
||
.. --------------------------------------------------------------------------- | ||
.. _whatsnew_213.other: | ||
|
||
Other | ||
~~~~~ | ||
- | ||
- | ||
|
||
.. --------------------------------------------------------------------------- | ||
.. _whatsnew_213.contributors: | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
.. contributors:: v2.1.2..v2.1.3|HEAD |
Oops, something went wrong.