We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2556a5 + 1ba672c commit 9ca2c3eCopy full SHA for 9ca2c3e
lambdalib/__init__.py
@@ -1,9 +1,6 @@
1
import os
2
-import pkg_resources
3
-try:
4
- __version__ = pkg_resources.get_distribution('lambdalib').version
5
-except: # noqa E722
6
- __version__ = None
+
+__version__ = "0.1.1"
7
8
9
def register_data_source(chip):
pyproject.toml
@@ -22,7 +22,10 @@ license = {file = "LICENSE"}
22
dependencies = [
23
"siliconcompiler >= 0.17.0"
24
]
25
-version = "0.1.0"
+dynamic = ['version']
26
27
+[tool.setuptools.dynamic]
28
+version = {attr = "lambdalib.__version__"}
29
30
[tool.pytest.ini_options]
31
testpaths = "tests"
0 commit comments