From 503df5b3cc29ab13dbb31e3c7a0531ccea948ae3 Mon Sep 17 00:00:00 2001 From: Catherine Date: Wed, 24 Jul 2024 22:27:54 +0000 Subject: [PATCH] Update for Amaranth v0.5.1. --- src/config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config.ts b/src/config.ts index 26b4751..629c0b2 100644 --- a/src/config.ts +++ b/src/config.ts @@ -6,7 +6,9 @@ const amaranth_0_4_3 = 'https://files.pythonhosted.org/packages/72/34/82f76a59f4 const amaranth_0_4_4 = 'https://files.pythonhosted.org/packages/ee/66/bbb766873059d8051ddb7e760de80beefd286979bc9a786e7ec4ac524336/amaranth-0.4.4-py3-none-any.whl'; const amaranth_0_4_5 = 'https://files.pythonhosted.org/packages/1a/bf/cff5c705f2f5978889e1fa0fc2a70e0fadbb9f2a51db2d3315c3bda7c3ea/amaranth-0.4.5-py3-none-any.whl'; const amaranth_0_5_0 = 'https://files.pythonhosted.org/packages/d3/34/8a21cc1765f1952eb35766cf76ec8a1b3e73f32ae78d9bf1c1a88313bdcd/amaranth-0.5.0-py3-none-any.whl'; +const amaranth_0_5_1 = 'https://files.pythonhosted.org/packages/46/1c/74dc024e77038a273160dd1d70a79371142ba9ebeac4b2fb89c272ce6859/amaranth-0.5.1-py3-none-any.whl'; const pythonPackages = { + 'v0.5.1': [rfc3986_2_0_0, jschon_0_11_1, pyvcd_0_4_0, amaranth_0_5_1], 'v0.5.0': [rfc3986_2_0_0, jschon_0_11_1, pyvcd_0_4_0, amaranth_0_5_0], 'v0.4.5': [pyvcd_0_4_0, amaranth_0_4_5], 'v0.4.4': [pyvcd_0_4_0, amaranth_0_4_4], @@ -73,6 +75,7 @@ amaranth_playground.show_verilog(verilog.convert(m, ports=[count])) # amaranth_playground.show_rtlil(rtlil.convert(m, ports=[count])) `; const demoCode = { + 'v0.5.1': demoCode_0_5, 'v0.5.0': demoCode_0_5, 'v0.4.5': demoCode_0_4, 'v0.4.4': demoCode_0_4,