Skip to content

Commit 26ef261

Browse files
author
Paul Westenthanner
committed
prepare release 2.6.3
1 parent b8a1901 commit 26ef261

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
unreleased
22
==========
33

4+
v2.6.3
5+
======
6+
* fixed: issue 424 - pandas NaNs
7+
* fixed: pandas deprecations and ruff linter suggestions
8+
* fixed: issue 421 - detect pandas categorical type as categorical column
9+
410
v2.6.2
511
======
612
* fixed: issue 414 - broken link

category_encoders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from category_encoders.quantile_encoder import QuantileEncoder, SummaryEncoder
2929

3030

31-
__version__ = '2.6.2'
31+
__version__ = '2.6.3'
3232

3333
__author__ = "willmcginnis", "cmougan", "paulwestenthanner"
3434

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ All of these are fully compatible sklearn transformers, so they can be used in p
7575
the cols parameter isn't passed, every non-numeric column will be converted. See below for detailed documentation
7676

7777
Known issues:
78-
----
78+
-------------
7979

8080
`CategoryEncoders` internally works with `pandas DataFrames` as apposed to `sklearn` which works with `numpy arrays`. This can cause problems in `sklearn` versions prior to 1.2.0. In order to ensure full compatibility with `sklearn` set `sklearn` to also output `DataFrames`. This can be done by
8181

@@ -97,7 +97,7 @@ for a whole project or just for a single pipeline using
9797
If you experience another bug, feel free to report it on [github](https://github.com/scikit-learn-contrib/category_encoders/issues)
9898
9999
Contents:
100-
----
100+
---------
101101
102102
.. toctree::
103103
:maxdepth: 3

0 commit comments

Comments
 (0)