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

Commit 3beac28

Browse files
committed
Avoid using pip 2020-resolver
It seams that our tox -e py36-devel is also affected by the endless loop install bug from the new resolver, we are forced to disable it, at least for this job. Example: https://github.com/ansible-community/molecule-podman/pull/23/checks?check_run_id=1458663833 Related: pypa/pip#6536 Related: Textualize/rich#446
1 parent d11a99b commit 3beac28

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@ setenv =
3333
PYTHONUNBUFFERED=1
3434
# new resolve a must or test extras will not install right
3535
PIP_USE_FEATURE=2020-resolver
36+
# endless loop bug on devel
37+
devel: PIP_USE_FEATURE=
3638
MOLECULE_NO_LOG=0
3739
deps =
40+
# https://github.com/willmcgugan/rich/issues/446
41+
py36-devel: dataclasses==0.7
3842
devel: ansible>=2.10.0a2,<2.11
3943
py{36,37,38,39}: molecule[ansible,test]
4044
py{36,37,38,39}-{devel}: git+https://github.com/ansible-community/molecule.git@master#egg=molecule[test]

0 commit comments

Comments
 (0)