Skip to content

Commit

Permalink
Merge pull request #163 from benjixx/bugfix/fix-dependencies
Browse files Browse the repository at this point in the history
fix dependencies
  • Loading branch information
benjixx committed Jun 19, 2018
2 parents c5df8d0 + caa3b05 commit 1d1aaee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion goodplay/ansible_support/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run_async(self):
self.process = run(
'ansible-playbook -vvv -i {0} {1}',
self.ctx.extended_inventory_path, self.ctx.playbook_path,
env=env, async=True)
env=env, async_=True)

# wait for subprocess to be responsive
self.process.wait_events()
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ansible==2.5.4
cached-property==1.4.2
ansible==2.5.5
cached-property==1.4.3
docker-compose==1.21.2
py==1.5.3
pytest==3.6.0
sarge==0.1.4
pytest==3.6.1
sarge==0.1.5
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
'ansible>=2.3',
'cached-property>=1.3.1',
'docker-compose>=1.18.0',
'idna==2.6', # pin temporary due to dep docker-py -> requests -> idna<2.7
'py>=1.4.34',
'pytest>=3.5.0',
'sarge>=0.1.4',
'sarge==0.1.5',
]

readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
Expand Down

0 comments on commit 1d1aaee

Please sign in to comment.