Skip to content

Commit 8689b72

Browse files
committed
ci: test Python 3.14
1 parent 6f6cb00 commit 8689b72

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/python.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ jobs:
99
max-parallel: 5
1010
matrix:
1111
os: [ubuntu-22.04, ubuntu-24.04-arm, windows-2022, macos-15-intel]
12-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1313

1414
steps:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121

22+
- name: Install pip if missing
23+
run: |
24+
curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py
25+
python -m ensurepip --upgrade || python /tmp/get-pip.py
26+
2227
- name: Install dependencies
2328
run: |
2429
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)