diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2023-10-20 18:43:12 +0200 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2023-10-20 19:29:25 +0200 |
commit | 05e45cd9b852689d687d658063d7b52e42db4fcf (patch) | |
tree | 5257d6cfc1e17d666e1923e0a22367350fb0a9f0 | |
parent | 8601110db0d077f253ee749bef59f954eb7432e7 (diff) | |
download | debian-ansible-core-05e45cd9b852689d687d658063d7b52e42db4fcf.zip |
Fix galaxy tests
-rw-r--r-- | debian/patches/0009-resolvelib_compat.patch | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/debian/patches/0009-resolvelib_compat.patch b/debian/patches/0009-resolvelib_compat.patch index b1d0331b..73f6f2d6 100644 --- a/debian/patches/0009-resolvelib_compat.patch +++ b/debian/patches/0009-resolvelib_compat.patch @@ -27,7 +27,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ The named tuples have the entries ``requirement`` and ``parent``. - resolvelib >=0.8.0, <= 0.8.1 -+ resolvelib >=0.8.0, <= 1.1.0 ++ resolvelib >=0.8.0, <= 1.0.1 :param identifier: The value returned by ``identify()``. @@ -77,3 +77,36 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ packaging -resolvelib<0.9.0,>=0.5.3 +resolvelib<1.1.0,>=0.5.3 +--- a/test/integration/targets/ansible-galaxy-collection/vars/main.yml ++++ b/test/integration/targets/ansible-galaxy-collection/vars/main.yml +@@ -9,6 +9,8 @@ + - "0.6.0" + - "0.7.0" + - "0.8.0" ++ - "0.9.0" ++ - "1.0.1" + + unsupported_resolvelib_versions: + - "0.2.0" # Fails on import +--- a/PKG-INFO ++++ b/PKG-INFO +@@ -35,7 +35,7 @@ + Requires-Dist: PyYAML>=5.1 + Requires-Dist: cryptography + Requires-Dist: packaging +-Requires-Dist: resolvelib<0.9.0,>=0.5.3 ++Requires-Dist: resolvelib<1.1.0,>=0.5.3 + + [![PyPI version](https://img.shields.io/pypi/v/ansible-core.svg)](https://pypi.org/project/ansible-core) + [![Docs badge](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://docs.ansible.com/ansible/latest/) +--- a/lib/ansible_core.egg-info/PKG-INFO ++++ b/lib/ansible_core.egg-info/PKG-INFO +@@ -35,7 +35,7 @@ + Requires-Dist: PyYAML>=5.1 + Requires-Dist: cryptography + Requires-Dist: packaging +-Requires-Dist: resolvelib<0.9.0,>=0.5.3 ++Requires-Dist: resolvelib<1.1.0,>=0.5.3 + + [![PyPI version](https://img.shields.io/pypi/v/ansible-core.svg)](https://pypi.org/project/ansible-core) + [![Docs badge](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://docs.ansible.com/ansible/latest/) |