Skip to content

Commit 8fbfaa5

Browse files
authored
👷🔧🍎 enable Python 3.8+ tests on macos-14 runners (cda-tum#597)
## Description GitHub's `macos-14` runners now also support Python 3.8 and 3.9. This PR adjusts the reusable workflows to remove the special handling that was in place previously. ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. Signed-off-by: burgholzer <burgholzer@me.com>
1 parent 8d0746c commit 8fbfaa5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ flag_management:
2929
- name: python
3030
paths:
3131
- "src/mqt/**/*.py"
32-
after_n_builds: 10
32+
after_n_builds: 11
3333
statuses:
3434
- type: project
3535
threshold: 0.5%

.github/workflows/reusable-python-ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ jobs:
7575
python-version:
7676
- ${{ fromJson(needs.dist.outputs.python-versions)[0] }}
7777
- ${{ needs.dist.outputs.max-python-version }}
78-
runs-on: [macos-13] # test Intel architecture
79-
include:
80-
- runs-on: macos-14 # test Apple Silicon architecture
81-
python-version: ${{ needs.dist.outputs.max-python-version }} # testing Apple Silicon on 3.8 is blocked by https://github.com/actions/setup-python/issues/808
78+
runs-on: [macos-13, macos-14]
8279
uses: ./.github/workflows/reusable-python-tests.yml
8380
with:
8481
runs-on: ${{ matrix.runs-on }}

0 commit comments

Comments
 (0)