summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Schlömer <nico.schloemer@gmail.com>2022-09-03 12:08:19 +0200
committerGitHub <noreply@github.com>2022-09-03 12:08:19 +0200
commit19596dcc7742fb30e915f73ff6acb1b76371079d (patch)
tree89cdbc2885ea9213c96dfda8c42f311df7c7808b
parent4f2306c2937c95e8573abbfe210f70a5f6d5ed39 (diff)
parent518b2c2539573ca9da693a793cc70e5794cd46b7 (diff)
Merge pull request #102 from nschloe/version-fixHEADv0.2.8main
version fix
-rw-r--r--pyproject.toml3
-rw-r--r--src/tiptop/__about__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 20fbaae..f61957b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -34,6 +34,9 @@ dependencies = [
"textual >=0.1.15, <0.2",
]
+[tool.setuptools.dynamic]
+version = {attr = "tiptop.__about__.__version__"}
+
[project.urls]
Code = "https://github.com/nschloe/tiptop"
Issues = "https://github.com/nschloe/tiptop/issues"
diff --git a/src/tiptop/__about__.py b/src/tiptop/__about__.py
index 6cd38b7..c49a95c 100644
--- a/src/tiptop/__about__.py
+++ b/src/tiptop/__about__.py
@@ -1 +1 @@
-__version__ = "0.2.7"
+__version__ = "0.2.8"