Skip to content

Commit

Permalink
Add support for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshilliard committed Oct 8, 2024
1 parent 42e015c commit b617146
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy2.7', 'pypy3.7', 'pypy3.8', 'pypy3.9', 'pypy3.10']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy2.7', 'pypy3.7', 'pypy3.8', 'pypy3.9', 'pypy3.10']
include:
# Most jobs can run on ubuntu-latest
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ You need a working C compiler.
Python header files should be installed.

This version of PyStemmer has been CI tested using Python series 3.6, 3.7,
3.8, 3.9, 3.10, 3.11, 3.12, pypy and pypy3.
3.8, 3.9, 3.10, 3.11, 3.12, 3.13, pypy and pypy3.

We no longer actively support Python 2 as the Python developers stopped
supporting it at the start of 2020. PyStemmer 2.2.0.1 was the final version
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ def run(self):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Text Processing :: Indexing",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py39, py310, py311, pypy, pypy3
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py39, py310, py311, py312, py313, pypy, pypy3

[testenv]
deps =
Expand Down

0 comments on commit b617146

Please sign in to comment.