Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
name: Build the project
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 18
max-parallel: 21
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
container: kunlp/jumanpp-knp:ubuntu24.04
runs-on: ubuntu-24.04
strategy:
max-parallel: 6
max-parallel: 7
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
container: kunlp/jumanpp-knp:ubuntu24.04
runs-on: ubuntu-24.04
strategy:
max-parallel: 6
max-parallel: 7
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ alabaster==0.7.16 ; python_full_version < '3.10'
alabaster==1.0.0 ; python_full_version >= '3.10'
babel==2.17.0
beautifulsoup4==4.13.4
certifi==2025.6.15
certifi==2025.4.26
charset-normalizer==3.4.2
colorama==0.4.6 ; sys_platform == 'win32'
docutils==0.21.2
Expand All @@ -22,7 +22,7 @@ myst-parser==4.0.1 ; python_full_version >= '3.10'
packaging==25.0
pygments==2.19.2
pyyaml==6.0.2
requests==2.32.4
requests==2.32.3
roman-numerals-py==3.1.0 ; python_full_version >= '3.11'
snowballstemmer==2.2.0
soupsieve==2.7
Expand All @@ -40,6 +40,6 @@ sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
tomli==2.2.1 ; python_full_version < '3.11'
typing-extensions==4.14.1
urllib3==2.5.0
typing-extensions==4.13.2
urllib3==2.4.0
zipp==3.21.0 ; python_full_version < '3.10'
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
Loading