From b57c9a5c25100d711c7875b27cc1aad2dc70bae6 Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Tue, 2 Jul 2024 12:46:13 +0300 Subject: [PATCH] pyproject.toml: depend on amaranth >= 0.5. --- pdm.lock | 10 ++-------- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/pdm.lock b/pdm.lock index 63275cf..a2f99ab 100644 --- a/pdm.lock +++ b/pdm.lock @@ -5,15 +5,12 @@ groups = ["default", "test"] strategy = ["cross_platform", "inherit_metadata"] lock_version = "4.4.2" -content_hash = "sha256:7ced02b88ce69e03d516a9aa6b3445b6e9817c45c75d221edf8efb3e2f29d7b5" +content_hash = "sha256:dfce41eadf41522ec513efd6be5f6e9b039e9fc2fc6eac1eecb921d5bc9925f5" [[package]] name = "amaranth" version = "0.6.0.dev26" requires_python = "~=3.8" -git = "https://github.com/amaranth-lang/amaranth.git" -ref = "main" -revision = "eefca8323028a0616d2b50019d119fcf7dd3d200" summary = "Amaranth hardware definition language" groups = ["default", "test"] dependencies = [ @@ -55,14 +52,11 @@ name = "amaranth" version = "0.6.0.dev26" extras = ["builtin-yosys"] requires_python = "~=3.8" -git = "https://github.com/amaranth-lang/amaranth.git" -ref = "main" -revision = "eefca8323028a0616d2b50019d119fcf7dd3d200" summary = "Amaranth hardware definition language" groups = ["default"] dependencies = [ - "amaranth @ git+https://github.com/amaranth-lang/amaranth.git@eefca8323028a0616d2b50019d119fcf7dd3d200", "amaranth-yosys>=0.40", + "amaranth==0.6.0.dev26", ] [[package]] diff --git a/pyproject.toml b/pyproject.toml index 354a934..a9add49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [ { name = "Asherah Connor", email = "ashe@kivikakk.ee" }, ] dependencies = [ - "amaranth[builtin-yosys] @ git+https://github.com/amaranth-lang/amaranth.git@main", + "amaranth[builtin-yosys] >= 0.5", ] requires-python = ">=3.8" license = { text = "BSD-2-Clause" }