Skip to content

Commit

Permalink
Fix version import
Browse files Browse the repository at this point in the history
  • Loading branch information
flabbamann committed Jan 20, 2025
1 parent c2d065e commit 29d5773
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions pyfritzhome/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .errors import InvalidError, LoginError, NotLoggedInError
from .fritzhome import Fritzhome
from .fritzhomedevice import FritzhomeDevice
from .__version__ import __version__ # noqa: F401

__all__ = (
"Fritzhome",
Expand Down
3 changes: 3 additions & 0 deletions pyfritzhome/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""The fritzhome version"""

__version__ = "0.6.13"
5 changes: 1 addition & 4 deletions pyfritzhome/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
import logging
import argparse

try:
from version import __version__
except ImportError:
__version__ = "dev"
from .__version__ import __version__

from pyfritzhome import Fritzhome

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyfritzhome
version = 0.6.13
version = attr: pyfritzhome.__version__
description = Fritz!Box Smarthome Python Library
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down

0 comments on commit 29d5773

Please sign in to comment.