Skip to content

Commit 8d2ba53

Browse files
committed
CI: remove test against Amaranth 0.3.
1 parent df8013d commit 8d2ba53

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/main.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
- '3.8'
1414
# this version range needs to be synchronized with the one in pyproject.toml
1515
amaranth-version:
16-
- '0.3'
1716
- 'git'
1817
fail-fast: false
1918
steps:
@@ -27,14 +26,18 @@ jobs:
2726
if: ${{ matrix.amaranth-version != 'git' }}
2827
run: |
2928
pip install 'amaranth==${{ matrix.amaranth-version }}'
30-
- name: Downgrade MarkupSafe
31-
if: ${{ matrix.amaranth-version == '0.3' }}
32-
run: |
33-
pip install 'MarkupSafe==2.0.1'
3429
- name: Install Amaranth from git
3530
if: ${{ matrix.amaranth-version == 'git' }}
3631
run: |
3732
pip install git+https://github.com/amaranth-lang/amaranth.git
3833
- name: Test
3934
run: |
4035
python -m unittest discover
36+
37+
required: # group all required workflows into one for the required status check
38+
needs:
39+
- test
40+
runs-on: ubuntu-latest
41+
steps:
42+
- run: |
43+
true

0 commit comments

Comments
 (0)