We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbb1dde commit 7e8b2cfCopy full SHA for 7e8b2cf
pyproject.toml
@@ -7,8 +7,8 @@ name = "peakrdl-uvm"
7
dynamic = ["version"]
8
requires-python = ">=3.5.2"
9
dependencies = [
10
- "systemrdl-compiler >= 1.27.0, < 2",
11
- "jinja2>=2.9",
+ "systemrdl-compiler ~= 1.27",
+ "jinja2 >= 2.9",
12
]
13
14
authors = [
src/peakrdl_uvm/__about__.py
@@ -1 +1,2 @@
1
-__version__ = "2.3.0"
+version_info = (2, 3, 0)
2
+__version__ = ".".join([str(n) for n in version_info])
0 commit comments