diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-06-26 21:29:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 21:29:22 +0200 |
commit | 7c08b29827f5b44f74dcd59a67174a983ae3708d (patch) | |
tree | 0a34b4282e0d0e21abbe44deb1347537a572c9cf /requirements | |
parent | Added troubleshooting and tips tricks content (#15212) (diff) | |
download | awx-7c08b29827f5b44f74dcd59a67174a983ae3708d.tar.xz awx-7c08b29827f5b44f74dcd59a67174a983ae3708d.zip |
Temporary workaround for CI failure (#15305)
Workaround
```
ERROR awx/main/tests/functional/test_licenses.py - pip._vendor.distlib.DistlibException: Unable to locate finder for 'pip._vendor.distlib'
```
Diffstat (limited to 'requirements')
-rw-r--r-- | requirements/requirements_dev.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/requirements/requirements_dev.txt b/requirements/requirements_dev.txt index 059ada9be3..0d88a477fe 100644 --- a/requirements/requirements_dev.txt +++ b/requirements/requirements_dev.txt @@ -24,10 +24,9 @@ gprof2dot atomicwrites flake8 yamllint -pip>=21.3 # PEP 660 – Editable installs for pyproject.toml based builds (wheel based) +pip>=21.3,<=24.0 # PEP 660 – Editable installs for pyproject.toml based builds (wheel based) # python debuggers debugpy remote-pdb sdb - |