Skip to content

Commit

Permalink
Merge pull request #35 from eerkunt/fix/package_problems
Browse files Browse the repository at this point in the history
Fix/package problems
  • Loading branch information
eerkunt authored Oct 24, 2018
2 parents 7c8a9f4 + 4b466ce commit a77f94e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- sonar-scanner -Dsonar.projectKey=terraform-compliance -Dsonar.organization=eerkunt-github -Dsonar.sources=. -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_LOGIN -Dsonar.exclusions=tests/** -Dsonar.python.coverage.reportPath=coverage.xml

- stage: Build & Deploy (PYPI)
script: "echo 'PYPI Build & Deploy'"
script:
- "echo 'PYPI Build & Deploy'"
if: branch = master AND type != pull_request
deploy:
skip_cleanup: true
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"""
from setuptools import find_packages, setup
from terraform_compliance.main import __app_name__, __version__
import radish

dependencies = [
'radish-bdd',
'radish',
'radish-bdd',
'terraform-validate',
'gitpython',
'netaddr'
Expand Down
2 changes: 1 addition & 1 deletion terraform_compliance/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


__app_name__ = "terraform-compliance"
__version__ = "0.4.0"
__version__ = "0.4.1"


class ArgHandling(object):
Expand Down

0 comments on commit a77f94e

Please sign in to comment.