Skip to content

Commit 46c41f3

Browse files
author
Will McGinnis
committed
updating setup links
1 parent 4eaa69b commit 46c41f3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
python -m pip install -r requirements-dev.txt
3131
- name: Test with pytest
3232
run: |
33-
python -m pytest
33+
pytest

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from setuptools import setup, find_packages
22
from codecs import open
33
from os import path
4-
5-
__version__ = '2.2.0'
4+
from category_encoders import __version__
65

76

87
here = path.abspath(path.dirname(__file__))
@@ -17,8 +16,8 @@
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',

0 commit comments

Comments
 (0)