Skip to content

Commit daa8ee1

Browse files
author
Will McGinnis
committed
re-releasing
1 parent 5659daa commit daa8ee1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Categorical Encoding Methods
22
============================
33

4+
![Test Suite and Linting](https://github.com/scikit-learn-contrib/category_encoders/workflows/Test%20Suite%20and%20Linting/badge.svg)
45
[![DOI](https://zenodo.org/badge/47077067.svg)](https://zenodo.org/badge/latestdoi/47077067)
56

67
A set of scikit-learn-style transformers for encoding categorical

category_encoders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from category_encoders.cat_boost import CatBoostEncoder
2525
from category_encoders.glmm import GLMMEncoder
2626

27-
__version__ = '2.2.0'
27+
__version__ = '2.2.1'
2828

2929
__author__ = 'willmcginnis'
3030

docs/source/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,10 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = 'latest'
67+
from category_encoders import __version__
68+
version = __version__
6869
# The full version, including alpha/beta/rc tags.
69-
release = 'latest'
70+
release = __version__
7071

7172
# The language for content autogenerated by Sphinx. Refer to documentation
7273
# for a list of supported languages.

0 commit comments

Comments
 (0)