From 5518e5dbca01b87d13850cee9ccdbdc1ee49188f Mon Sep 17 00:00:00 2001 From: Wong Hoi Sing Edison Date: Wed, 15 Mar 2023 12:32:51 +0800 Subject: [PATCH] Trigger CI by pinning resolvelib with latest version Since resolvelib is pre-installed in our test containers, we should temporarily pin the latest version allowed to force the tests to run with that version. Once the tests have passed that commit can be reverted. Please make those changes without force pushing, so that we keep the reference to the passing CI run. We can squash the commits when merging the PR so the temporary commits won't be in the final commit merged to the devel branch. Signed-off-by: Wong Hoi Sing Edison --- requirements.txt | 2 +- test/lib/ansible_test/_data/requirements/ansible.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index a07aa985063..57e9e0086ed 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,4 +15,4 @@ importlib_resources >= 5.0, < 5.1; python_version < '3.10' # NOTE: Ref: https://github.com/sarugaku/resolvelib/issues/69 # NOTE: When updating the upper bound, also update the latest version used # NOTE: in the ansible-galaxy-collection test suite. -resolvelib >= 0.5.3, < 1.1.0 # dependency resolver used by ansible-galaxy +resolvelib >= 0.5.3, == 1.0.1 # dependency resolver used by ansible-galaxy diff --git a/test/lib/ansible_test/_data/requirements/ansible.txt b/test/lib/ansible_test/_data/requirements/ansible.txt index a07aa985063..57e9e0086ed 100644 --- a/test/lib/ansible_test/_data/requirements/ansible.txt +++ b/test/lib/ansible_test/_data/requirements/ansible.txt @@ -15,4 +15,4 @@ importlib_resources >= 5.0, < 5.1; python_version < '3.10' # NOTE: Ref: https://github.com/sarugaku/resolvelib/issues/69 # NOTE: When updating the upper bound, also update the latest version used # NOTE: in the ansible-galaxy-collection test suite. -resolvelib >= 0.5.3, < 1.1.0 # dependency resolver used by ansible-galaxy +resolvelib >= 0.5.3, == 1.0.1 # dependency resolver used by ansible-galaxy