File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 13
13
- ' 3.8'
14
14
# this version range needs to be synchronized with the one in pyproject.toml
15
15
amaranth-version :
16
- - ' 0.3'
17
16
- ' git'
18
17
fail-fast : false
19
18
steps :
@@ -27,14 +26,18 @@ jobs:
27
26
if : ${{ matrix.amaranth-version != 'git' }}
28
27
run : |
29
28
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'
34
29
- name : Install Amaranth from git
35
30
if : ${{ matrix.amaranth-version == 'git' }}
36
31
run : |
37
32
pip install git+https://github.com/amaranth-lang/amaranth.git
38
33
- name : Test
39
34
run : |
40
35
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
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = {file = "LICENSE.txt"}
11
11
requires-python = " ~=3.8"
12
12
dependencies = [
13
13
# this version requirement needs to be synchronized with the one in .github/workflows/main.yml
14
- " amaranth>=0.3,<0.5 " ,
14
+ " amaranth@git+https://github.com/amaranth-lang/amaranth " ,
15
15
]
16
16
17
17
[project .urls ]
You can’t perform that action at this time.
0 commit comments