Skip to content

Commit 0528885

Browse files
committed
Use Python 3.14 in the GitHub workflows
Python 3.14 is the current stable version, released on October 7th. The dependencies we use also support Python 3.14 now, most importantly `fonttools` for which the OS-specific builds have been published (see the `cp314` wheels on https://pypi.org/project/fonttools/#files).
1 parent 3eca607 commit 0528885

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/fluent_linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
- name: Checkout repository
2828
uses: actions/checkout@v5
2929

30-
- name: Use Python 3.13
30+
- name: Use Python 3.14
3131
uses: actions/setup-python@v6
3232
with:
33-
python-version: '3.13'
33+
python-version: '3.14'
3434
cache: 'pip'
3535

3636
- name: Install Fluent dependencies

.github/workflows/font_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
- name: Install dependencies
4949
run: npm ci
5050

51-
- name: Use Python 3.13
51+
- name: Use Python 3.14
5252
uses: actions/setup-python@v6
5353
with:
54-
python-version: '3.13'
54+
python-version: '3.14'
5555
cache: 'pip'
5656

5757
- name: Install Fonttools

0 commit comments

Comments
 (0)