Skip to content

Commit

Permalink
Adding scipy to requirements list, pinning sklearn for pickle reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrose committed Dec 2, 2017
1 parent 11d53ca commit 789e64d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tagnews/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .utils.load_data import load_ner_data
from .utils.load_vectorizer import load_glove

__version__ = '0.5.0'
__version__ = '0.6.0'

def test(verbosity=None, **kwargs):
"""run the test suite"""
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


setup(name='tagnews',
version='0.5.0',
version='0.6.0',
description='automatically tag articles with justice-related categories',
author='Kevin Rose',
url='https://github.com/chicago-justice-project/article-tagging',
Expand All @@ -17,7 +17,7 @@
'tagnews.crimetype',
'tagnews.crimetype.models.binary_stemmed_logistic',
'tagnews.tests'],
install_requires=['nltk', 'numpy>=1.13', 'scikit-learn', 'pandas'],
install_requires=['nltk', 'numpy>=1.13', 'scikit-learn==0.19.0', 'pandas', 'scipy'],
tests_require=['pytest'],
package_data={'tagnews': ['crimetype/models/binary_stemmed_logistic/*.pkl']},
python_requires=">=3.5", # for now
Expand Down

0 comments on commit 789e64d

Please sign in to comment.