Skip to content

Commit

Permalink
fix: aiomqtt has no attribute __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
vvanglro authored and empicano committed Feb 21, 2024
1 parent 9a1cbb1 commit b17c310
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions aiomqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
from .message import Message
from .topic import Topic, TopicLike, Wildcard, WildcardLike

# These are placeholders that are managed by poetry-dynamic-versioning
__version__ = "0.0.0"
__version_tuple__ = (0, 0, 0)

__all__ = [
"__version__",
"__version_tuple__",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ strict = true
metadata = false

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.ruff]
Expand Down

0 comments on commit b17c310

Please sign in to comment.