Skip to content

Commit 70340f2

Browse files
committed
Clamp Ubuntu version in GitHub action
1 parent 49125b8 commit 70340f2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010

11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- uses: actions/checkout@v5

.github/workflows/test-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on: [push]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
timeout-minutes: 5
1010
strategy:
1111
max-parallel: 6
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
1414

1515
steps:
1616
- uses: actions/checkout@v5

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39,310,311,312}, pypy3, flake8, pylint, docs, manifest
2+
envlist = py3{6,7,8,9,10,11,12}, pypy3{9,10,11}, flake8, pylint, docs, manifest
33

44
[testenv:flake8]
55
basepython = python3.12

0 commit comments

Comments
 (0)