Skip to content

Commit 2a2e1a1

Browse files
author
PaulWestenthanner
committed
Prepare release 2.7.0
1 parent c06d829 commit 2a2e1a1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
unreleased
1+
v.2.7.0
22
==========
33

44
* Refactor: Use poetry as packaging tool
55
* Refactor: Add more typing
6+
* Refactor: Add format checks
67
* Change `feature_names_in_` and `feature_names_out_` to `np.ndarray` instead of lists.
7-
* Breaking: Do not allow scalar values as target variable (of length 1) anymore
8-
* Breaking: Force dataframe column names to be strings.
8+
* Fixed: Support python 3.11, 3.12, 3.13.
9+
* Breaking: Drop support for python 3.7, 3.8 and 3.9
10+
* Breaking: No longer add intercept in contrast coding schemes.
911

1012
v2.6.4
1113
======

category_encoders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from category_encoders.target_encoder import TargetEncoder
2828
from category_encoders.woe import WOEEncoder
2929

30-
__version__ = '2.6.4'
30+
__version__ = '2.7.0'
3131

3232
__author__ = 'willmcginnis', 'cmougan', 'paulwestenthanner'
3333

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "category_encoders"
3-
version = "2.6.4"
3+
version = "2.7.0"
44
description = "A package for encoding categorical variables for machine learning"
55
authors = ["PaulWestenthanner <[email protected]>"]
66
license = "BSD-3"

0 commit comments

Comments
 (0)