Update python-package.yml

This commit is contained in:
Xiaomeng Zhao
2025-04-08 16:49:56 +08:00
committed by GitHub
parent 87fd4c2806
commit 714504864e

View File

@@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
@@ -79,10 +79,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install magic-pdf
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .[full]
- name: Install wheel
run: |