diff --git a/.github/workflows/manylinux1.yml b/.github/workflows/manylinux1.yml index 890bd6d..4e5dcb6 100644 --- a/.github/workflows/manylinux1.yml +++ b/.github/workflows/manylinux1.yml @@ -10,7 +10,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '>=3.8 <3.13' + python-version: '>=3.8 <3.14' - name: install MeCab run: | git clone --depth=1 https://github.com/taku910/mecab.git @@ -39,7 +39,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '>=3.8 <3.13' + python-version: '>=3.8 <3.14' - name: build array of wheels uses: ./.github/workflows/actions/build-manylinux/ - name: Upload Wheels @@ -66,7 +66,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '>=3.8 <3.13' + python-version: '>=3.8 <3.14' - name: Set up QEMU id: qemu uses: docker/setup-qemu-action@v1 diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 64e59e2..66bc2e8 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -13,7 +13,7 @@ jobs: - name: Set up python uses: actions/setup-python@v5 with: - python-version: '>=3.7 <3.13' + python-version: '>=3.8 <3.14' - name: Download and build MeCab shell: bash run: | diff --git a/.github/workflows/test_manylinux.yml b/.github/workflows/test_manylinux.yml index 1fb0230..844b1c8 100644 --- a/.github/workflows/test_manylinux.yml +++ b/.github/workflows/test_manylinux.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] include: - python-version: '3.8' py-short: '38' @@ -25,6 +25,9 @@ jobs: - python-version: '3.12' py-short: 312 py-short2: 312 + - python-version: '3.13' + py-short: 313 + py-short2: 313 env: PYTHON: /opt/python/cp${{ matrix.py-short }}-cp${{ matrix.py-short2 }}/bin/python steps: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ae22765..c0b67ca 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] include: - python-version: '3.8' py-short: '38' @@ -30,6 +30,9 @@ jobs: - python-version: '3.12' py-short: 312 py-short2: 312 + - python-version: '3.13' + py-short: 313 + py-short2: 313 steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}