1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00

Merge pull request #19035 from timvandermeij/python3.13

Use Python 3.13 in the GitHub workflows
This commit is contained in:
Tim van der Meij 2024-11-12 21:42:15 +01:00 committed by GitHub
commit 172e1bf2c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -27,10 +27,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Python 3.12
- name: Use Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
cache: 'pip'
- name: Install Fluent dependencies

View file

@ -48,10 +48,10 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Use Python 3.12
- name: Use Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
cache: 'pip'
- name: Install Fonttools

View file

@ -32,5 +32,5 @@ it before running the font tests:
python3 -m venv venv
source venv/bin/activate
pip install fonttools
gulp fonttest
npx gulp fonttest
```