Skip to content

Commit 7c2b752

Browse files
authored
Merge pull request #113 from vduseev/main
Update Ubuntu workflow build image from 20.04 to ubuntu-latest
2 parents a23341b + 91a4463 commit 7c2b752

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

Diff for: .github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-n-publish:
1212
name: Build and publish to PyPi
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:

Diff for: .github/workflows/tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,11 @@ jobs:
1010
matrix:
1111
# https://help.github.com/articles/virtual-environments-for-github-actions
1212
platform:
13-
- ubuntu-20.04
13+
- ubuntu-latest
1414
- macos-latest
1515
- windows-latest
1616
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
17-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
18-
exclude:
19-
- platform: macos-latest
20-
python-version: '3.6'
21-
- platform: macos-latest
22-
python-version: '3.7'
17+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
2318

2419
steps:
2520
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)