Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions external_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
git_deps:
onnx-passes:
url: "https://github.com/iksnagreb/onnx-passes.git"
commit: "e5ff48c2292f83d490b0aed11437d953193701d6"
pip_install: True
install_editable: True
cnpy:
url: "https://github.com/maltanar/cnpy.git"
commit: "8c82362372ce600bbd1cf11d64661ab69d38d7de"
Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ enable = true
finn = "finn.interface.run_finn:main"

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
python = ">=3.11,<3.12"
pybind11 = "3.0.1" # pybind11==3.0.1 already for FIFO sim rework, after rework remove module load
bitstring = "~4.3.1"
numpy = "1.26.4" # numpy<=1.26.4 required by brevitas
Expand All @@ -50,9 +50,11 @@ numpy = "1.26.4" # numpy<=1.26.4 required by brevitas
# to be upgraded to produce a consistent model, but this in turn cannot be done
# due to the model IR version support issue...
scipy = "~1.15.0"
onnx = "1.17.0"
onnxruntime = "1.20.1"
onnxscript = ">=0.6.2" # TODO: the onnx-passes installation will overwrite this version
onnx = ">=1.17.0"
onnxruntime = ">=1.20.1"
onnxscript = ">=0.7.0"
onnx-ir = ">=0.1.15"
onnx-passes = ">=0.4.0"
protobuf = "5.29.6"
pyyaml = "~6.0.2"
mip = "~1.13.0"
Expand All @@ -63,7 +65,7 @@ qonnx = "1.0.0"
termcolor = "^2.5.0"
rich = "^13.9.4"
click = "^8.1.8"
onnxoptimizer = "^0.3.13"
onnxoptimizer = "^0.4.2"
pydantic = ">2.0"
mashumaro = { extras = ["yaml"], version = "^3.15" }

Expand Down
Loading