Skip to content

Commit 7e949a3

Browse files
authored
Merge pull request #221 from ku-nlp/python-3.14
Support Python 3.14
2 parents be39621 + 2277d31 commit 7e949a3

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
name: Build the project
88
runs-on: ${{ matrix.os }}
99
strategy:
10-
max-parallel: 18
10+
max-parallel: 21
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest, windows-latest]
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v5

.github/workflows/test-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
container: kunlp/jumanpp-knp:ubuntu24.04
1212
runs-on: ubuntu-24.04
1313
strategy:
14-
max-parallel: 6
14+
max-parallel: 7
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
1818
steps:
1919
- name: Checkout repository
2020
uses: actions/checkout@v5

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
container: kunlp/jumanpp-knp:ubuntu24.04
99
runs-on: ubuntu-24.04
1010
strategy:
11-
max-parallel: 6
11+
max-parallel: 7
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v5

docs/requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@
33
alabaster==0.7.16 ; python_full_version < '3.10'
44
alabaster==1.0.0 ; python_full_version >= '3.10'
55
babel==2.17.0
6-
beautifulsoup4==4.14.2
7-
certifi==2025.8.3
8-
charset-normalizer==3.4.3
6+
beautifulsoup4==4.13.4
7+
certifi==2025.4.26
8+
charset-normalizer==3.4.2
99
colorama==0.4.6 ; sys_platform == 'win32'
10-
docutils==0.22.2
10+
docutils==0.21.2
1111
furo==2024.8.6
1212
idna==3.10
1313
imagesize==1.4.1
1414
importlib-metadata==8.7.0 ; python_full_version < '3.10'
1515
jinja2==3.1.6
1616
markdown-it-py==3.0.0
17-
markupsafe==3.0.3
17+
markupsafe==3.0.2
1818
mdit-py-plugins==0.4.2
1919
mdurl==0.1.2
2020
myst-parser==3.0.1 ; python_full_version < '3.10'
2121
myst-parser==4.0.1 ; python_full_version >= '3.10'
2222
packaging==25.0
2323
pygments==2.19.2
2424
pyyaml==6.0.3
25-
requests==2.32.5
25+
requests==2.32.3
2626
roman-numerals-py==3.1.0 ; python_full_version >= '3.11'
2727
snowballstemmer==2.2.0
28-
soupsieve==2.8
28+
soupsieve==2.7
2929
sphinx==7.4.7 ; python_full_version < '3.10'
3030
sphinx==8.1.3 ; python_full_version == '3.10.*'
3131
sphinx==8.2.3 ; python_full_version >= '3.11'
@@ -41,5 +41,5 @@ sphinxcontrib-qthelp==2.0.0
4141
sphinxcontrib-serializinghtml==2.0.0
4242
tomli==2.2.1 ; python_full_version < '3.11'
4343
typing-extensions==4.15.0
44-
urllib3==2.5.0
44+
urllib3==2.4.0
4545
zipp==3.21.0 ; python_full_version < '3.10'

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
"Topic :: Scientific/Engineering",
3031
"Topic :: Software Development :: Libraries",
3132
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)