Skip to content

Commit cf0ca81

Browse files
Updated files with 'repo_helper'.
1 parent f7ddd62 commit cf0ca81

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-22.04"
2020

2121
steps:
2222
- name: Checkout 🛎️

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-20.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9'
@@ -84,7 +84,7 @@ jobs:
8484

8585
Coverage:
8686
needs: tests
87-
runs-on: "ubuntu-20.04"
87+
runs-on: "ubuntu-22.04"
8888
steps:
8989
- name: Checkout 🛎️
9090
uses: "actions/checkout@v4"
@@ -133,7 +133,7 @@ jobs:
133133
Deploy:
134134
needs: tests
135135

136-
runs-on: "ubuntu-20.04"
136+
runs-on: "ubuntu-22.04"
137137
steps:
138138
- name: Checkout 🛎️
139139
uses: "actions/checkout@v4"

.github/workflows/python_ci_macos.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ permissions:
1818

1919
jobs:
2020
tests:
21-
name: "macos-13 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "macos-13"
21+
name: "macos-${{ matrix.config.os-ver }} / Python ${{ matrix.config.python-version }}"
22+
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9'
@@ -28,16 +28,16 @@ jobs:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
32-
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
33-
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
36-
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
38-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
39-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
40-
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
31+
- {python-version: "3.7", os-ver: "13", testenvs: "py37,build", experimental: False}
32+
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
33+
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
34+
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False}
36+
- {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False}
37+
- {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False}
38+
- {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37,build", experimental: False}
39+
- {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38,build", experimental: False}
40+
- {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39,build", experimental: True}
4141

4242
steps:
4343
- name: Checkout 🛎️

0 commit comments

Comments
 (0)