Skip to content

Commit 9b4131c

Browse files
authored
Merge pull request #6 from zeroasiccorp/fix-ci
ensure the CI runs
2 parents e577fa5 + 1dde4bc commit 9b4131c

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

.github/workflows/lint.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,16 @@ jobs:
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 .

.github/workflows/regression.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,16 @@ jobs:
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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [{name = "Zero ASIC"}]
88
description = "Tech agnostic RTL benchmark suite"
99
readme = "README.md"
1010
urls = {Homepage = "https://github.com/zeroasiccorp/logikbench"}
11-
requires-python = ">= 3.12"
11+
requires-python = ">= 3.10"
1212
license = {file = "LICENSE"}
1313
dependencies = ["siliconcompiler >= 0.32.3"]
1414
dynamic = ['version']
@@ -24,7 +24,7 @@ testpaths = "tests"
2424
timeout = "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"

0 commit comments

Comments
 (0)