From d3413372b42fef19b8a265f2b1cc44203aecda9d Mon Sep 17 00:00:00 2001 From: Lee Garrett Date: Thu, 10 Apr 2025 10:40:55 -0400 Subject: [PATCH] Allow running with ansible-core 2.19 --- ansible_mitogen/loaders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_mitogen/loaders.py b/ansible_mitogen/loaders.py index 123dd4ac..9597e3ee 100644 --- a/ansible_mitogen/loaders.py +++ b/ansible_mitogen/loaders.py @@ -49,7 +49,7 @@ __all__ = [ ANSIBLE_VERSION_MIN = (2, 10) -ANSIBLE_VERSION_MAX = (2, 18) +ANSIBLE_VERSION_MAX = (2, 19) NEW_VERSION_MSG = ( "Your Ansible version (%s) is too recent. The most recent version\n"