Skip to content

Commit c032c40

Browse files
committed
uv migration - fix a few more issues
1 parent 93b12b3 commit c032c40

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ dev = [
121121
]
122122

123123
[template]
124-
version = "2.0.0"
124+
version = "2.0.1"
125125
url = "https://github.com/calmmage/botspot-template.git"
126126
author = "Petr Lavrov <me@petrlavrov.com>"
127127
description = "A template for creating a bot using botspot"

src/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
from pathlib import Path
1212

1313
path = Path(__file__).parent.parent / "pyproject.toml"
14-
__version__ = toml.load(path)["tool"]["poetry"]["version"]
14+
__version__ = toml.load(path)["project"]["version"]
1515
del toml, Path, path
16+

0 commit comments

Comments
 (0)