Skip to content

Commit

Permalink
Drop support of Python 3.8, add support of Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
liZe committed Oct 28, 2024
1 parent 4a24dac commit f7ddb04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.12']
python-version: ['3.13']
include:
- os: ubuntu-latest
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for more details.
https://git.libreoffice.org/dictionaries

* Free software: GPL 2.0+ or LGPL 2.1+ or MPL 1.1 for the code
* For Python 3.8+, tested on CPython and PyPy
* For Python 3.9+, tested on CPython and PyPy
* Documentation: https://doc.courtbouillon.org/pyphen
* Changelog: https://github.com/Kozea/pyphen/releases
* Code, issues, tests: https://github.com/Kozea/pyphen
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = 'Pure Python module to hyphenate text'
keywords = ['hyphenation']
authors = [{name = 'Guillaume Ayoub', email = '[email protected]'}]
maintainers = [{name = 'CourtBouillon', email = '[email protected]'}]
requires-python = '>=3.8'
requires-python = '>=3.9'
readme = {file = 'README.rst', content-type = 'text/x-rst'}
license = {file = 'LICENSE'}
classifiers = [
Expand All @@ -19,11 +19,11 @@ classifiers = [
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Text Processing',
Expand Down

0 comments on commit f7ddb04

Please sign in to comment.