Skip to content

Commit

Permalink
Add 3.13 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
polm committed Oct 31, 2024
1 parent cba9403 commit d062324
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manylinux1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test_manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 }}
Expand Down

0 comments on commit d062324

Please sign in to comment.