Skip to content

Commit c044e51

Browse files
committed
Merge branch 'master' of https://github.com/pandas-dev/pandas into bug-offsets
2 parents 15c48be + a6311fb commit c044e51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+507
-2921
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ repos:
104104
language: python
105105
entry: python scripts/validate_unwanted_patterns.py --validation-type="private_import_across_module"
106106
types: [python]
107-
exclude: ^(asv_bench|pandas/_vendored|pandas/tests|doc)/
107+
exclude: ^(asv_bench|pandas/tests|doc)/
108108
- id: unwanted-patterns-private-function-across-module
109109
name: Check for use of private functions across modules
110110
language: python
111111
entry: python scripts/validate_unwanted_patterns.py --validation-type="private_function_across_module"
112112
types: [python]
113-
exclude: ^(asv_bench|pandas/_vendored|pandas/tests|doc)/
113+
exclude: ^(asv_bench|pandas/tests|doc)/
114114
- repo: https://github.com/asottile/yesqa
115115
rev: v1.2.2
116116
hooks:

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ check:
3030
python3 scripts/validate_unwanted_patterns.py \
3131
--validation-type="private_function_across_module" \
3232
--included-file-extensions="py" \
33-
--excluded-file-paths=pandas/tests,asv_bench/,pandas/_vendored \
33+
--excluded-file-paths=pandas/tests,asv_bench/ \
3434
pandas/
3535

3636
python3 scripts/validate_unwanted_patterns.py \
3737
--validation-type="private_import_across_module" \
3838
--included-file-extensions="py" \
39-
--excluded-file-paths=pandas/tests,asv_bench/,pandas/_vendored,doc/
39+
--excluded-file-paths=pandas/tests,asv_bench/,doc/
4040
pandas/

doc/source/whatsnew/v1.1.4.rst

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ including other versions of pandas.
1515
Fixed regressions
1616
~~~~~~~~~~~~~~~~~
1717
- Fixed regression in :func:`read_csv` raising a ``ValueError`` when ``names`` was of type ``dict_keys`` (:issue:`36928`)
18+
- Fixed regression in :func:`read_csv` with more than 1M rows and specifying a ``index_col`` argument (:issue:`37094`)
1819
- Fixed regression where attempting to mutate a :class:`DateOffset` object would no longer raise an ``AttributeError`` (:issue:`36940`)
1920
- 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`).
2021
- Fixed regression in :class:`RollingGroupby` with ``sort=False`` not being respected (:issue:`36889`)
@@ -28,7 +29,9 @@ Fixed regressions
2829
- Fixed regression in certain offsets (:meth:`pd.offsets.Day() <pandas.tseries.offsets.Day>` and below) no longer being hashable (:issue:`37267`)
2930
- Fixed regression in :class:`StataReader` which required ``chunksize`` to be manually set when using an iterator to read a dataset (:issue:`37280`)
3031
- Fixed regression in setitem with :meth:`DataFrame.iloc` which raised error when trying to set a value while filtering with a boolean list (:issue:`36741`)
32+
- Fixed regression in setitem with a Series getting aligned before setting the values (:issue:`37427`)
3133
- Fixed regression in :attr:`MultiIndex.is_monotonic_increasing` returning wrong results with ``NaN`` in at least one of the levels (:issue:`37220`)
34+
- Fixed regression in inplace arithmetic operation on a Series not updating the parent DataFrame (:issue:`36373`)
3235

3336
.. ---------------------------------------------------------------------------
3437

pandas/_vendored/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)