Skip to content

Commit d801a33

Browse files
fix(e2e): bump pbr pin to 7.0.3 in conflicting requirements test
pbr 6.1.1 depends on pkg_resources, which was removed from modern setuptools. This caused the bootstrap to fail before reaching the constraints conflict detection, making the test fail on all platforms. Co-Authored-By: Claude <claude@anthropic.com> Signed-off-by: Lalatendu Mohanty <lmohanty@redhat.com>
1 parent 6ed8159 commit d801a33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

e2e/test_bootstrap_conflicting_requirements.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source "$SCRIPTDIR/common.sh"
1313
# expected pbr version
1414
constraints_file=$(mktemp)
1515
trap "rm -f $constraints_file" EXIT
16-
echo "pbr==6.1.1" > "$constraints_file"
16+
echo "pbr==7.0.3" > "$constraints_file"
1717

1818
# passing settings to bootstrap but should have 0 effect on it
1919
fromager \
@@ -47,7 +47,7 @@ $pass
4747
# packages should be written to the constraints file. Conflicting packages
4848
# (stevedore versions) should be excluded entirely.
4949
EXPECTED_LINES="
50-
pbr==6.1.1
50+
pbr==7.0.3
5151
"
5252

5353
SHOULD_NOT_BE_PRESENT="

0 commit comments

Comments
 (0)