Skip to content

Commit ea9428a

Browse files
author
Will McGinnis
committed
adding wheel dependency to pypi job
1 parent c82dc19 commit ea9428a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
python -m pip install --upgrade pip
1919
pip install -r requirements.txt
2020
pip install -r requirements-dev.txt
21+
pip install wheel
2122
python setup.py bdist_wheel sdist
2223
- name: Publish package
2324
uses: pypa/gh-action-pypi-publish@master

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
v2.2.0
1+
v2.2.2
22
======
33
* Added generalized linear mixed model encoder
44
* Added cross-validation wrapper
55
* Added multi-class wrapper
66
* Support for pandas >= 1.0.1
7+
* Moved CI to github actions
78

89
v2.1.0
910
======

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.1'
27+
__version__ = '2.2.2'
2828

2929
__author__ = 'willmcginnis'
3030

0 commit comments

Comments
 (0)