Skip to content

Commit

Permalink
Move dependencies to TOML
Browse files Browse the repository at this point in the history
  • Loading branch information
Aba committed Nov 17, 2023
1 parent 6290620 commit 599c9d1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
cd verilator-compiled
tar -C ${HOME} -xzf verilator.tar.gz
- name: Install Tensorflow
- name: Install DeepSoCFlow
run: |
pip install pytest numpy tensorflow qkeras
pip install .
- name: Verify Full Design
run: |
Expand All @@ -46,7 +46,6 @@ jobs:
export PYMTL_VERILATOR_INCLUDE_DIR=${VERILATOR_ROOT}/share/verilator/include
verilator --version
pip install .
mkdir -p run/work
cd run/work
python -m pytest -s ../param_test.py
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ deepsocflow/test/temp
deepsocflow/test/py/*

.svls.toml
.svlint.toml

run/work/vectors/*
run/work/build/*
Expand Down
12 changes: 0 additions & 12 deletions .svlint.toml

This file was deleted.

File renamed without changes.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@ classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
'numpy >= 1.26.2',
'pyparsing >= 3.0.9',
'pytest >= 7.4.0',
'QKeras >= 0.9.0',
'tensorflow >= 2.15.0',
]

0 comments on commit 599c9d1

Please sign in to comment.