Skip to content

Commit 8861bdc

Browse files
committed
Pin Python 3.7 builds to ubuntu 22.04
- the newest runner has changed to 24.04, which has no Python 3.7 support
1 parent f014a26 commit 8861bdc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest]
17-
python-version: [3.7, 3.11]
17+
python-version: [3.8, 3.13]
1818
env:
1919
OS: ${{ matrix.os }}
2020
steps:

.github/workflows/pythontests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
17-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1818
include:
1919
- python-version: "pypy-3.7"
20-
os: ubuntu-latest
20+
os: ubuntu-22.04
2121
- python-version: "pypy-3.9"
2222
os: ubuntu-latest
2323
- python-version: "pypy-3.10"
2424
os: ubuntu-latest
25+
- python-version: "3.7"
26+
os: ubuntu-22.04
27+
- python-version: "3.7"
28+
os: windows-latest
2529
env:
2630
OS: ${{ matrix.os }}
2731
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Infrastructure
66
* use trusted publisher for release (see https://docs.pypi.org/trusted-publishers/)
7+
* pin Python 3.7 builds to ubuntu 22.04 (not available in 24.04)
78

89
## [Version 1.3.0](https://pypi.org/project/pytest-order/1.3.0/) (2024-08-22)
910
Allows to fail tests that cannot be ordered.

0 commit comments

Comments
 (0)