We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93b12b3 commit c032c40Copy full SHA for c032c40
pyproject.toml
@@ -121,7 +121,7 @@ dev = [
121
]
122
123
[template]
124
-version = "2.0.0"
+version = "2.0.1"
125
url = "https://github.com/calmmage/botspot-template.git"
126
author = "Petr Lavrov <me@petrlavrov.com>"
127
description = "A template for creating a bot using botspot"
src/__init__.py
@@ -11,5 +11,6 @@
11
from pathlib import Path
12
13
path = Path(__file__).parent.parent / "pyproject.toml"
14
- __version__ = toml.load(path)["tool"]["poetry"]["version"]
+ __version__ = toml.load(path)["project"]["version"]
15
del toml, Path, path
16
+
0 commit comments