Skip to content

Commit

Permalink
import version
Browse files Browse the repository at this point in the history
  • Loading branch information
blaylockbk committed Dec 19, 2023
1 parent 2488145 commit fbdba84
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions goes2go/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@
import warnings
from pathlib import Path

__author__ = "Brian K. Blaylock"


try:
## TODO: Will the `_version.py` file *always* be present?
## TODO: What if the person doesn't do "pip install"
from ._version import __version__, __version_tuple__
except:
__version__ = "unknown"
__version_tuple__ = (999, 999, 999)


import toml

# =======================================================================
Expand Down

0 comments on commit fbdba84

Please sign in to comment.