docs/install: fix Yosys version requirement.

This commit is contained in:
Catherine 2024-03-22 00:57:48 +00:00
parent 8c65a79cdd
commit 2ab3a4a0a0
3 changed files with 10 additions and 3 deletions

View file

@ -8,7 +8,7 @@ __all__ = ["YosysError", "convert", "convert_fragment"]
def _convert_rtlil_text(rtlil_text, *, strip_internal_attrs=False, write_verilog_opts=()):
# this version requirement needs to be synchronized with the one in pyproject.toml!
# This version requirement needs to be synchronized with the one in pyproject.toml!
yosys = find_yosys(lambda ver: ver >= (0, 38))
script = []