From 0681cb77b16cb4ddab5da92e7b226d3511ac8476 Mon Sep 17 00:00:00 2001 From: psentee <135014396+psentee@users.noreply.github.com> Date: Sun, 4 Jun 2023 21:42:05 +0200 Subject: [PATCH] pyproject: relax pyvcd requirement to include 0.4. The only breaking change in 0.4 is dropping support for Python 3.6, which Amaranth has already dropped. It also adds official support for 3.10 and 3.11. https://github.com/westerndigitalcorporation/pyvcd/blob/3ad7340072791e695e32cfb51135b751a8ddab41/CHANGELOG.rst --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4e6cee6..de6a7f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ requires-python = "~=3.7" dependencies = [ "importlib_metadata; python_version<'3.8'", # for __version__ and amaranth._toolchain.yosys "importlib_resources; python_version<'3.9'", # for amaranth._toolchain.yosys - "pyvcd>=0.2.2,<0.4", # for amaranth.sim.pysim + "pyvcd>=0.2.2,<0.5", # for amaranth.sim.pysim "Jinja2~=3.0", # for amaranth.build ]