Skip to content

Commit

Permalink
Add version import fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
tovrstra committed Aug 27, 2020
1 parent 1a1dd3a commit 2323bed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion roberto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@
# --
"""Roberto package."""

from .version import __version__
try:
from .version import __version__
except ImportError:
__version__ = "0.0.0.post0"

0 comments on commit 2323bed

Please sign in to comment.