diff --git a/.travis.yml b/.travis.yml index ba07717..2469d03 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,12 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7-dev" # 3.7 development branch - - "nightly" # currently points to 3.7-dev + - "3.7" + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" install: - git submodule init - git submodule update diff --git a/AUTHORS.rst b/AUTHORS.rst index 965a31e..d504146 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -14,6 +14,7 @@ answer newbie questions, and generally made ``python-stop-words`` that much bett * Julien Fache * David MirĂ³ * Taras Labiak +* Ryan Wong A big THANK YOU goes to: diff --git a/ChangeLog.rst b/ChangeLog.rst index 436f65f..82e0dc7 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,10 @@ +2024.8.28 +========= + +* Feature: Support latest version of Python (3.12+). +* Feature: Support simplified chinese and traditional chinese stopwords + + 2018.7.23 ========= diff --git a/README.rst b/README.rst index 2b60446..3bdd8f1 100644 --- a/README.rst +++ b/README.rst @@ -55,8 +55,10 @@ Available languages * Portuguese * Romanian * Russian +* Simplified Chinese * Spanish * Swedish +* Traditional Chinese * Turkish * Ukrainian @@ -98,10 +100,15 @@ Basic usage Python compatibility -------------------- -Python Stop Words is compatibe with: +Python Stop Words is compatible with: * Python 2.7 * Python 3.4 * Python 3.5 * Python 3.6 * Python 3.7 +* Python 3.8 +* Python 3.9 +* Python 3.10 +* Python 3.11 +* Python 3.12 diff --git a/bootstrap.py b/bootstrap.py index 1f59b21..071a951 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -25,7 +25,7 @@ from optparse import OptionParser -__version__ = '2015-07-01' +__version__ = '2024-08-28' # See zc.buildout's changelog if this version is up to date. tmpeggs = tempfile.mkdtemp(prefix='bootstrap-') diff --git a/setup.py b/setup.py index 53a5f11..dce4b33 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,11 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Text Processing', 'Topic :: Text Processing :: Filters', 'License :: OSI Approved :: BSD License', diff --git a/stop_words/__init__.py b/stop_words/__init__.py index 3a35466..3013d8f 100644 --- a/stop_words/__init__.py +++ b/stop_words/__init__.py @@ -1,7 +1,7 @@ import json import os -__VERSION__ = (2018, 7, 23) +__VERSION__ = (2024, 8, 28) CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) STOP_WORDS_DIR = os.path.join(CURRENT_DIR, 'stop-words') STOP_WORDS_CACHE = {} diff --git a/stop_words/stop-words b/stop_words/stop-words index bd8cc14..a5c2b6d 160000 --- a/stop_words/stop-words +++ b/stop_words/stop-words @@ -1 +1 @@ -Subproject commit bd8cc1434faeb3449735ed570a4a392ab5d35291 +Subproject commit a5c2b6df054c5743e2f3d27019ae12448fc3e5f5