Skip to content

Commit b6668da

Browse files
committed
BLD: Final release prep
1 parent 160b3eb commit b6668da

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

doc/source/whatsnew/v2.2.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ Other
5656
Contributors
5757
~~~~~~~~~~~~
5858

59-
.. contributors:: v2.2.1..v2.2.2|HEAD
59+
.. contributors:: v2.2.1..v2.2.2

doc/source/whatsnew/v2.2.3.rst

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _whatsnew_223:
22

3-
What's new in 2.2.3 (September XX, 2024)
3+
What's new in 2.2.3 (September 20, 2024)
44
----------------------------------------
55

66
These are the changes in pandas 2.2.3. See :ref:`release` for a full changelog
@@ -9,28 +9,37 @@ including other versions of pandas.
99
{{ header }}
1010

1111
.. ---------------------------------------------------------------------------
12-
.. _whatsnew_223.regressions:
1312
14-
Fixed regressions
15-
~~~~~~~~~~~~~~~~~
16-
-
13+
.. _whatsnew_220.py13_compat:
14+
15+
Pandas 2.2.3 is now compatible with Python 3.13
16+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17+
18+
Pandas 2.2.3 is the first version of pandas that is generally compatible with the upcoming
19+
Python 3.13, and both wheels for free-threaded and normal Python 3.13 will be uploaded for
20+
this release.
21+
22+
As usual please report any bugs discovered to our `issue tracker <https://github.com/pandas-dev/pandas/issues/new/choose>`_
1723

1824
.. ---------------------------------------------------------------------------
1925
.. _whatsnew_223.bug_fixes:
2026

2127
Bug fixes
2228
~~~~~~~~~
23-
-
29+
- Bug in :func:`eval` on :class:`complex` including division ``/`` discards imaginary part. (:issue:`21374`)
30+
- Minor fixes for numpy 2.1 compatibility. (:issue:`59444`)
2431

2532
.. ---------------------------------------------------------------------------
2633
.. _whatsnew_223.other:
2734

2835
Other
2936
~~~~~
30-
-
37+
- Missing licenses for 3rd party dependencies were added back into the wheels. (:issue:`58632`)
3138

3239
.. ---------------------------------------------------------------------------
3340
.. _whatsnew_223.contributors:
3441

3542
Contributors
3643
~~~~~~~~~~~~
44+
45+
.. contributors:: v2.2.2..v2.2.3|HEAD

doc/source/whatsnew/v3.0.0.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,6 @@ Other
693693
^^^^^
694694
- Bug in :class:`DataFrame` when passing a ``dict`` with a NA scalar and ``columns`` that would always return ``np.nan`` (:issue:`57205`)
695695
- Bug in :func:`eval` on :class:`ExtensionArray` on including division ``/`` failed with a ``TypeError``. (:issue:`58748`)
696-
- Bug in :func:`eval` on :class:`complex` including division ``/`` discards imaginary part. (:issue:`21374`)
697696
- Bug in :func:`eval` where the names of the :class:`Series` were not preserved when using ``engine="numexpr"``. (:issue:`10239`)
698697
- Bug in :func:`unique` on :class:`Index` not always returning :class:`Index` (:issue:`57043`)
699698
- Bug in :meth:`DataFrame.apply` where passing ``engine="numba"`` ignored ``args`` passed to the applied function (:issue:`58712`)

scripts/cibw_before_build.sh

100644100755
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Add 3rd party licenses, like numpy does
2+
3+
PROJECT_DIR="${1:-$PWD}"
4+
5+
for file in $PROJECT_DIR/LICENSES/*; do
6+
cat $file >> $PROJECT_DIR/LICENSE
7+
done
8+
19
# TODO: Delete when there's PyPI NumPy/Cython releases the support Python 3.13.
210
# If free-threading support is not included in those releases, this script will have
311
# to whether this runs for a free-threaded build instead.

0 commit comments

Comments
 (0)