Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4583007

Browse files
authoredJul 8, 2024··
Merge branch 'master' into feat/audioop
Signed-off-by: Lala Sabathil <[email protected]>
2 parents a3ca168 + 81dfa98 commit 4583007

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+5193
-673
lines changed
 

‎.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
pip install -r requirements/dev.txt
2222
- name: Setup cache
2323
id: cache-pylint
24-
uses: actions/cache@v3
24+
uses: actions/cache@v4
2525
with:
2626
path: .pylint.d
2727
key: pylint
@@ -43,7 +43,7 @@ jobs:
4343
pip install -r requirements/dev.txt
4444
- name: Setup cache
4545
id: cache-mypy
46-
uses: actions/cache@v3
46+
uses: actions/cache@v4
4747
with:
4848
path: .mypy_cache
4949
key: mypy

‎.github/workflows/test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
# Python 3.8/3.9 are on macos-13 but not macos-latest (macos-14-arm64)
21+
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
22+
exclude:
23+
- { python-version: "3.8", os: "macos-latest" }
24+
- { python-version: "3.9", os: "macos-latest" }
25+
include:
26+
- { python-version: "3.8", os: "macos-13" }
27+
- { python-version: "3.9", os: "macos-13" }
28+
2029
env:
2130
OS: ${{ matrix.os }}
2231
PYTHON: ${{ matrix.python-version }}
@@ -35,7 +44,7 @@ jobs:
3544
pip install -r requirements/dev.txt
3645
- name: Setup cache
3746
id: cache-pytest
38-
uses: actions/cache@v3
47+
uses: actions/cache@v4
3948
with:
4049
path: .pytest_cache
4150
key: ${{ matrix.os }}-${{ matrix.python-version }}-pytest

0 commit comments

Comments
 (0)
Please sign in to comment.