Skip to content

Commit

Permalink
Merge branch 'hotfix/1.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
emfomy committed May 7, 2021
2 parents f58e6f5 + 063380e commit 2f42be4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ckip_classic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__copyright__ = '2018-2020 CKIP Lab'

__title__ = 'CkipClassic'
__version__ = '1.2.1'
__version__ = '1.2.2'
__description__ = 'CKIP Classic NLP Tools'
__license__ = 'GPL-3.0'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
import sys
import warnings

from distutils.version import StrictVersion
from distutils.version import LooseVersion
import setuptools

assert StrictVersion(setuptools.__version__) >= StrictVersion('40.0'), \
assert LooseVersion(setuptools.__version__) >= LooseVersion('40.0'), \
'Please update setuptools to 40.0+ using `pip install -U setuptools`.'

################################################################################
Expand Down

0 comments on commit 2f42be4

Please sign in to comment.