"vscode:/vscode.git/clone" did not exist on "719fd2d36fdf98d14ae15618c96d445e7fe00843"
Unverified Commit 2cc4cd03 authored by Yifan Xiong's avatar Yifan Xiong Committed by GitHub
Browse files

Limit ansible_runner version for Python3.6 (#485)

Limit ansible_runner version to less than 2.3.2 for Python3.6.
parent eba298f5
...@@ -149,7 +149,7 @@ def run(self): ...@@ -149,7 +149,7 @@ def run(self):
], ],
install_requires=[ install_requires=[
'ansible_base>=2.10.9;os_name=="posix"', 'ansible_base>=2.10.9;os_name=="posix"',
'ansible_runner>=2.0.0rc1', 'ansible_runner>=2.0.0rc1, <2.3.2',
'colorlog>=6.7.0', 'colorlog>=6.7.0',
'importlib_metadata', 'importlib_metadata',
'jinja2>=2.10.1', 'jinja2>=2.10.1',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment