Skip to content

Commit 1b1aa1c

Browse files
committed
Update CI to newer python and action versions
1 parent b36cc24 commit 1b1aa1c

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- uses: psf/black@23.3.0
10+
- uses: psf/black@25.1.0
1111
isort:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.7
17+
python-version: 3.9
1818
- uses: isort/isort-action@master

.github/workflows/tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,8 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, macos-13]
17-
python-version: ["3.7", "3.10"]
18-
# exclude: # Python < v3.8 does not support Apple Silicon ARM64.
19-
# - python-version: "3.7"
20-
# os: macos-latest
21-
# include: # So run those legacy versions on Intel CPUs.
22-
# - python-version: "3.7"
23-
# os: macos-13
16+
os: [ubuntu-latest, macos-14]
17+
python-version: ["3.9", "3.12"]
2418
steps:
2519
- uses: actions/checkout@v3
2620
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)