Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into ci/debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Oct 27, 2023
2 parents c0372c5 + c36e302 commit 38455bd
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 7 deletions.
1 change: 1 addition & 0 deletions doc/source/whatsnew/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Version 2.1
.. toctree::
:maxdepth: 2

v2.1.3
v2.1.2
v2.1.1
v2.1.0
Expand Down
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v2.1.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ Other
Contributors
~~~~~~~~~~~~

.. contributors:: v2.1.0..v2.1.1|HEAD
.. contributors:: v2.1.0..v2.1.1
2 changes: 2 additions & 0 deletions doc/source/whatsnew/v2.1.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,5 @@ Other

Contributors
~~~~~~~~~~~~

.. contributors:: v2.1.1..v2.1.2
41 changes: 41 additions & 0 deletions doc/source/whatsnew/v2.1.3.rst
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
~~~~~~~~~
-
-

.. ---------------------------------------------------------------------------
.. _whatsnew_213.other:

Other
~~~~~
-
-

.. ---------------------------------------------------------------------------
.. _whatsnew_213.contributors:

Contributors
~~~~~~~~~~~~

.. contributors:: v2.1.2..v2.1.3|HEAD
7 changes: 1 addition & 6 deletions pandas/tests/frame/test_repr_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@ class TestDataFrameReprInfoEtc:
def test_repr_bytes_61_lines(self):
# GH#12857
lets = list("ACDEFGHIJKLMNOP")
slen = 50
nseqs = 1000
words = [
[np.random.default_rng(2).choice(lets) for x in range(slen)]
for _ in range(nseqs)
]
words = np.random.default_rng(2).choice(lets, (1000, 50))
df = DataFrame(words).astype("U1")
assert (df.dtypes == object).all()

Expand Down

0 comments on commit 38455bd

Please sign in to comment.