Skip to content

Commit

Permalink
fixed exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jan 15, 2024
1 parent 714068b commit 9433354
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## TAKProto 2.1.1

- Fixes #12: Add Changelog.
- Fixes #13: Missing Proto dir?
- Fixes #14: Don't throw away ImportError in __init__.py

## TAKProto 2.1.0

- Fixes #6: Fix xmlDetail compostion (include all details). Thanks @sei-jmattson!
Expand Down
5 changes: 2 additions & 3 deletions takproto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
:source: <https://github.com/snstac/takproto>
"""

__version__ = "2.1.1-beta1"
__version__ = "2.1.1-beta2"

# Python 3.6 test/build work-around:
try:
Expand All @@ -44,11 +44,10 @@
from .constants import TAKProtoVer # NOQA
except ImportError as exc:
import warnings

warnings.warn(
"Unable to import required modules, IGNORING for Python 3.6 compat. Original Exception: "
)
warnings.warn(exc)
warnings.warn(str(exc))

__author__ = "Greg Albrecht <gba@snstac.com>"
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com"
Expand Down

0 comments on commit 9433354

Please sign in to comment.