Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ answer newbie questions, and generally made ``python-stop-words`` that much bett
* Julien Fache <fantomas42@gmail.com>
* David Miró <lite.3engine@gmail.com>
* Taras Labiak <kissarat@gmail.com>
* Ryan Wong <ryanwong215@gmail.com>


A big THANK YOU goes to:
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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
=========

Expand Down
9 changes: 8 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ Available languages
* Portuguese
* Romanian
* Russian
* Simplified Chinese
* Spanish
* Swedish
* Traditional Chinese
* Turkish
* Ukrainian

Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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-')
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion stop_words/__init__.py
Original file line number Diff line number Diff line change
@@ -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 = {}
Expand Down
2 changes: 1 addition & 1 deletion stop_words/stop-words