Skip to content

Commit

Permalink
prepare release 2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Westenthanner committed Oct 29, 2023
1 parent b8a1901 commit 26ef261
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,12 @@
unreleased
==========

v2.6.3
======
* fixed: issue 424 - pandas NaNs
* fixed: pandas deprecations and ruff linter suggestions
* fixed: issue 421 - detect pandas categorical type as categorical column

v2.6.2
======
* fixed: issue 414 - broken link
Expand Down
2 changes: 1 addition & 1 deletion category_encoders/__init__.py
Expand Up @@ -28,7 +28,7 @@
from category_encoders.quantile_encoder import QuantileEncoder, SummaryEncoder


__version__ = '2.6.2'
__version__ = '2.6.3'

__author__ = "willmcginnis", "cmougan", "paulwestenthanner"

Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Expand Up @@ -75,7 +75,7 @@ All of these are fully compatible sklearn transformers, so they can be used in p
the cols parameter isn't passed, every non-numeric column will be converted. See below for detailed documentation

Known issues:
----
-------------

`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

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

0 comments on commit 26ef261

Please sign in to comment.