relax dependencies constraints from pinning to any path to any minor (#25)

This commit is contained in:
Arnav Sacheti
2025-11-26 09:51:04 -08:00
committed by GitHub
parent 88827c65b5
commit 5152adf00c
2 changed files with 6 additions and 3 deletions

View File

@@ -6,7 +6,10 @@ build-backend = "setuptools.build_meta"
name = "peakrdl-busdecoder"
version = "0.5.0"
requires-python = ">=3.10"
dependencies = ["jinja2>=3.1.6", "systemrdl-compiler~=1.30.1"]
dependencies = [
"jinja2~=3.1",
"systemrdl-compiler~=1.30",
]
authors = [{ name = "Arnav Sacheti" }]
description = "Generate a SystemVerilog bus decoder from SystemRDL for splitting CPU interfaces to multiple sub-address spaces"

4
uv.lock generated
View File

@@ -641,9 +641,9 @@ tools = [
[package.metadata]
requires-dist = [
{ name = "jinja2", specifier = ">=3.1.6" },
{ name = "jinja2", specifier = "~=3.1" },
{ name = "peakrdl-cli", marker = "extra == 'cli'", specifier = ">=1.2.3" },
{ name = "systemrdl-compiler", specifier = "~=1.30.1" },
{ name = "systemrdl-compiler", specifier = "~=1.30" },
]
provides-extras = ["cli"]