diff --git a/CHANGES.md b/CHANGES.md index a528560..f9aa564 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +## v0.5.9 +* Fix pack compatibility under python 3 when unsupported implicit relative import was used (#41) + ## v0.5.8 * Minor linting fix diff --git a/actions/lib/ansible_base.py b/actions/lib/ansible_base.py index f630c31..e56006e 100755 --- a/actions/lib/ansible_base.py +++ b/actions/lib/ansible_base.py @@ -1,11 +1,12 @@ import os import sys import subprocess -import shell import ast import json import six +from . import shell + __all__ = [ 'AnsibleBaseRunner' ] diff --git a/pack.yaml b/pack.yaml index 4d21fad..9b5492d 100644 --- a/pack.yaml +++ b/pack.yaml @@ -6,6 +6,6 @@ keywords: - ansible - cfg management - configuration management -version : 0.5.8 +version : 0.5.9 author : StackStorm, Inc. email : info@stackstorm.com