WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 1476243

Browse files
committed
Add 3.14 in more places
Wheels were not actually being build except for Windows.
1 parent 15bd2ce commit 1476243

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ make install
2121
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/
2222

2323
# Build the wheels
24-
Python="cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313"
24+
Python="cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313 cp314-cp314"
2525
for PYVER in $Python; do
2626
# build the wheels
2727
/opt/python/$PYVER/bin/pip wheel /github/workspace -w /github/workspace/wheels || { echo "Failed while buiding $PYVER wheel"; exit 1; }

.github/workflows/manylinux1.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Set up Python
1111
uses: actions/setup-python@v5
1212
with:
13-
python-version: '>=3.9 <3.14'
13+
python-version: '>=3.9 <3.15'
1414
- name: install MeCab
1515
run: |
1616
git clone --depth=1 https://github.com/taku910/mecab.git
@@ -39,7 +39,7 @@ jobs:
3939
- name: Set up Python
4040
uses: actions/setup-python@v5
4141
with:
42-
python-version: '>=3.9 <3.14'
42+
python-version: '>=3.9 <3.15'
4343
- name: build array of wheels
4444
uses: ./.github/workflows/actions/build-manylinux/
4545
- name: Upload Wheels
@@ -66,7 +66,7 @@ jobs:
6666
- name: Set up Python
6767
uses: actions/setup-python@v5
6868
with:
69-
python-version: '>=3.9 <3.14'
69+
python-version: '>=3.9 <3.15'
7070
- name: Set up QEMU
7171
id: qemu
7272
uses: docker/setup-qemu-action@v1

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up python
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: '>=3.8 <3.14'
16+
python-version: '>=3.9 <3.15'
1717
- name: Download and build MeCab
1818
shell: bash
1919
run: |

0 commit comments

Comments
 (0)