We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a072be0 + 736f77d commit 8aa2401Copy full SHA for 8aa2401
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "snyk-tags"
3
-version = "2.5.1"
+version = "2.5.2"
4
description = "CLI tool designed to manage tags and attributes at scale"
5
authors = ["EricFernandezSnyk <eric.fernandez@snyk.io>"]
6
license = "MIT"
snyk_tags/__init__.py
@@ -1,7 +1,14 @@
# snyk_tags/__init__.py
__app_name__ = "snyk_tags"
-__version__ = "2.5.0"
+try:
+ from importlib.metadata import version
+
7
+ __version__ = version(__app_name__)
8
9
+except ImportError:
10
+ __version__ = "development"
11
12
13
from logging import ERROR
14
from sre_constants import SUCCESS
0 commit comments