Skip to content

Commit 7e8b2cf

Browse files
committed
Revise dependency constraints to use compatible versioning
1 parent fbb1dde commit 7e8b2cf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "peakrdl-uvm"
77
dynamic = ["version"]
88
requires-python = ">=3.5.2"
99
dependencies = [
10-
"systemrdl-compiler >= 1.27.0, < 2",
11-
"jinja2>=2.9",
10+
"systemrdl-compiler ~= 1.27",
11+
"jinja2 >= 2.9",
1212
]
1313

1414
authors = [

src/peakrdl_uvm/__about__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
__version__ = "2.3.0"
1+
version_info = (2, 3, 0)
2+
__version__ = ".".join([str(n) for n in version_info])

0 commit comments

Comments
 (0)