Skip to content

Commit ac4f9de

Browse files
committed
Merge branch 'master' of https://github.com/pandas-dev/pandas into opsmixin-arith
2 parents 9424789 + f572faf commit ac4f9de

File tree

29 files changed

+591
-863
lines changed

29 files changed

+591
-863
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ repos:
4141
- id: pip_to_conda
4242
name: Generate pip dependency from conda
4343
description: This hook checks if the conda environment.yml and requirements-dev.txt are equal
44-
language: system
44+
language: python
4545
entry: python -m scripts.generate_pip_deps_from_conda
4646
files: ^(environment.yml|requirements-dev.txt)$
4747
pass_filenames: false
48+
additional_dependencies: [pyyaml]
4849
- repo: https://github.com/asottile/yesqa
4950
rev: v1.2.2
5051
hooks:

doc/source/whatsnew/v1.1.4.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ including other versions of pandas.
1515
Fixed regressions
1616
~~~~~~~~~~~~~~~~~
1717
- Fixed regression where attempting to mutate a :class:`DateOffset` object would no longer raise an ``AttributeError`` (:issue:`36940`)
18+
- Fixed regression where :meth:`DataFrame.agg` would fail with :exc:`TypeError` when passed positional arguments to be passed on to the aggregation function (:issue:`36948`).
19+
- Fixed regression in :class:`RollingGroupby` with ``sort=False`` not being respected (:issue:`36889`)
1820

1921
.. ---------------------------------------------------------------------------
2022

doc/source/whatsnew/v1.2.0.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ Performance improvements
310310
- The internal index method :meth:`~Index._shallow_copy` now makes the new index and original index share cached attributes,
311311
avoiding creating these again, if created on either. This can speed up operations that depend on creating copies of existing indexes (:issue:`36840`)
312312
- Performance improvement in :meth:`RollingGroupby.count` (:issue:`35625`)
313+
- Small performance decrease to :meth:`Rolling.min` and :meth:`Rolling.max` for fixed windows (:issue:`36567`)
313314

314315
.. ---------------------------------------------------------------------------
315316
@@ -442,6 +443,7 @@ Groupby/resample/rolling
442443
- Bug in :meth:`Rolling.sum()` returned wrong values when dtypes where mixed between float and integer and axis was equal to one (:issue:`20649`, :issue:`35596`)
443444
- Bug in :meth:`Rolling.count` returned ``np.nan`` with :class:`pandas.api.indexers.FixedForwardWindowIndexer` as window, ``min_periods=0`` and only missing values in window (:issue:`35579`)
444445
- Bug where :class:`pandas.core.window.Rolling` produces incorrect window sizes when using a ``PeriodIndex`` (:issue:`34225`)
446+
- Bug in :meth:`RollingGroupby.count` where a ``ValueError`` was raised when specifying the ``closed`` parameter (:issue:`35869`)
445447

446448
Reshaping
447449
^^^^^^^^^

0 commit comments

Comments
 (0)