File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 1414 - name : Check out Git repository
1515 uses : actions/checkout@v4
1616
17- - name : Lint with Flake8
17+ - name : Install
1818 run : |
19+ python3 -m venv .venv
20+ . .venv/bin/activate
1921 pip install --upgrade pip
2022 pip install .[test]
23+
24+ - name : Lint with Flake8
25+ run : |
26+ python3 -m venv .venv
27+ . .venv/bin/activate
28+
2129 flake8 --statistics .
Original file line number Diff line number Diff line change 1515 - name : Checkout repository
1616 uses : actions/checkout@v4
1717
18+ - name : Install
19+ run : |
20+ python3 -m venv .venv
21+ . .venv/bin/activate
22+ pip install --upgrade pip
23+ pip install .[test]
24+
1825 - name : Run pytest
1926 run : |
20- python3 -m pip install --upgrade pip
21- python3 -m pip install .[test]
27+ python3 -m venv .venv
28+ . .venv/bin/activate
29+
2230 pytest
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ authors = [{name = "Zero ASIC"}]
88description = " Tech agnostic RTL benchmark suite"
99readme = " README.md"
1010urls = {Homepage = " https://github.com/zeroasiccorp/logikbench" }
11- requires-python = " >= 3.12 "
11+ requires-python = " >= 3.10 "
1212license = {file = " LICENSE" }
1313dependencies = [" siliconcompiler >= 0.32.3" ]
1414dynamic = [' version' ]
@@ -24,7 +24,7 @@ testpaths = "tests"
2424timeout = " 60"
2525
2626[project .optional-dependencies ]
27- dev = [
27+ test = [
2828 " flake8 >= 5.0.0" ,
2929 " pytest >= 6.2.4" ,
3030 " pytest-timeout >= 2.1.0"
You can’t perform that action at this time.
0 commit comments