Bump Yosys dependency to >=0.40.

This commit is contained in:
Catherine 2024-04-10 21:48:12 +00:00
parent b36e7e0880
commit 8c02d3ef89
3 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,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!
yosys = find_yosys(lambda ver: ver >= (0, 39, 0, 165))
yosys = find_yosys(lambda ver: ver >= (0, 40))
script = []
script.append(f"read_ilang <<rtlil\n{rtlil_text}\nrtlil")