Github user tliron commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/199#discussion_r148628206
--- Diff: aria/__init__.py ---
@@ -17,14 +17,45 @@
The ARIA root package provides entry points for extension and storage
initialization.
"""
+import os
import sys
+import types
from pkgutil import iter_modules
import pkg_resources
-
aria_package_name = 'apache-ariatosca'
__version__ = pkg_resources.get_distribution(aria_package_name).version
+
+
+
+try:
+ import ruamel # noqa: F401
+except ImportError:
--- End diff --
Another follow up: if this is still an issue with newer versions of ruaeml,
I strongly suggest we open a bug at that project. I've done it in the past and
have gotten things fixed. If you do that, make sure to link that bug report in
a code comment here -- in case it's solved in the future, we should remove our
workaround.
---