File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 3030 python -m pip install -r requirements-dev.txt
3131 - name : Test with pytest
3232 run : |
33- python -m pytest
33+ pytest
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22from codecs import open
33from os import path
4-
5- __version__ = '2.2.0'
4+ from category_encoders import __version__
65
76
87here = path .abspath (path .dirname (__file__ ))
1716 description = 'A collection sklearn transformers to encode categorical variables as numeric' ,
1817 long_description = long_description ,
1918 long_description_content_type = 'text/markdown' ,
20- url = 'https://github.com/wdm0006/categorical_encoding ' ,
21- download_url = 'https://github.com/wdm0006/categorical_encoding /tarball/' + __version__ ,
19+ url = 'https://github.com/scikit-learn-contrib/category_encoders ' ,
20+ download_url = 'https://github.com/scikit-learn-contrib/category_encoders /tarball/' + __version__ ,
2221 license = 'BSD' ,
2322 classifiers = [
2423 'Development Status :: 3 - Alpha' ,
You can’t perform that action at this time.
0 commit comments