Skip to content

Commit

Permalink
ensuring compatibility with hmmlearn 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plison committed Sep 19, 2023
1 parent df77edf commit 72ea0e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

setuptools.setup(
name='skweak',
version='0.3.2',
version='0.3.3',
author="Pierre Lison",
author_email="plison@nr.no",
description="Software toolkit for weak supervision in NLP",
license='LICENSE.txt',
packages=['skweak'],
python_requires=">=3.6",
install_requires=["spacy>=3.0","hmmlearn>=0.2", "pandas>=0.23", "numpy>=1.18"],
install_requires=["spacy>=3.0","hmmlearn>=0.3.0", "pandas>=0.23", "numpy>=1.18"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NorskRegnesentral/skweak",
Expand Down
2 changes: 1 addition & 1 deletion skweak/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from . import base, doclevel, gazetteers, heuristics, aggregation, utils, spacy, voting, generative
__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 72ea0e6

Please sign in to comment.