Skip to content

Commit ac30ea3

Browse files
committed
Python 3.14
1 parent d930507 commit ac30ea3

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- download-test-model
9494
strategy:
9595
matrix:
96-
python-version: ["3.10", "3.11", "3.12", "3.13"]
96+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9797
os: [ubuntu-latest, macos-latest, windows-latest]
9898

9999
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- Added the extra group `neural` to the [pyproject.toml](./pyproject.toml) so that the required `torch`, `transformers`, and `wsd-torch-models` libraries are installed allowing the neural models to run.
2222
- Added `pymusas.taggers.neural` module that includes the first Neural based tagger using the taggers from [WSD-Torch-Models](https://github.com/UCREL/WSD-Torch-Models).
2323
- The CI pipeline `.github/workflows/ci.yml` now caches the Neural based tagger that we test (`ucrelnlp/PyMUSAS-Neural-English-Small-BEM`) so that it does not get downloaded each time the tests are ran for each Python version for each Operating System.
24+
- Supports `Python 3.14`.
2425

2526
### Changed
2627

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ PyMUSAS currently support 10 different languages with pre-configured spaCy compo
5252

5353
## Install PyMUSAS
5454

55-
Can be installed on all operating systems and supports Python version >= `3.10` < `3.14`, to install run:
55+
Can be installed on all operating systems and supports Python version >= `3.10` < `3.15`, to install run:
5656

5757
``` bash
5858
pip install pymusas

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Topic :: Scientific/Engineering",
2223
"Intended Audience :: Developers",
2324
"Intended Audience :: Science/Research"
2425
]
25-
requires-python = ">=3.10, <3.14"
26+
requires-python = ">=3.10, <3.15"
2627
dependencies = [
2728
"requests>=2.13.0,<3.0",
2829
"spacy>=3.1.4",

0 commit comments

Comments
 (0)