Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Require containers.podman>=1.6.2 #48

Merged
merged 1 commit into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/molecule_podman/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ def sanity_checks(self):
@property
def required_collections(self) -> Dict[str, str]:
"""Return collections dict containing names and versions required."""
return {"containers.podman": "1.6.1"}
return {"containers.podman": "1.6.2"}
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ setenv =
ANSIBLE_CALLABLE_WHITELIST={env:ANSIBLE_CALLABLE_WHITELIST:timer,profile_roles}
ANSIBLE_DISPLAY_FAILED_STDERR=1
ANSIBLE_VERBOSITY=1
# enabling pipelineing as it was known to break podman module in order
# versions, added here as a safety measure to prevent regression.
ANSIBLE_PIPELINING=1
PYTHONDONTWRITEBYTECODE=1
PYTHONUNBUFFERED=1
# new resolve a must or test extras will not install right
Expand All @@ -45,7 +48,7 @@ deps =
commands =
ansibledevel: ansible-galaxy collection install git+https://github.com/containers/ansible-podman-collections
# this should mention oldest version we find acceptable for runtime
ansible-galaxy collection install 'containers.podman:==1.6.1'
ansible-galaxy collection install 'containers.podman:==1.6.2'
# failsafe as pip may install incompatible dependencies
pip check
# failsafe for preventing changes that may break pytest collection
Expand Down