Skip to content

Commit

Permalink
Added: __version_info__ attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
veghdev committed Dec 20, 2023
1 parent f0a6864 commit 85678f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipyvizzu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
from .template import ChartProperty, DisplayTarget, DisplayTemplate
from .event import EventHandler

from .__version__ import __version__, PYENV
from .__version__ import __version__, __version_info__, PYENV

__all__ = [
"Chart",
Expand Down
1 change: 1 addition & 0 deletions src/ipyvizzu/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@


__version__ = "0.16.2"
__version_info__ = tuple(map(int, __version__.split(".")))

PYENV = sys.version_info

0 comments on commit 85678f5

Please sign in to comment.