◐ Shell
clean mode source ↗

Add missing pip in $PATH on Cygwin CI by EliahKagan · Pull Request #1784 · gitpython-developers/GitPython

Expand Up @@ -55,10 +55,15 @@ jobs: # and cause subsequent tests to fail cat test/fixtures/.gitconfig >> ~/.gitconfig
- name: Ensure the "pip" command is available run: | # This is used unless, and before, an updated pip is installed. ln -s pip3 /usr/bin/pip
- name: Update PyPA packages run: | # Get the latest pip, wheel, and prior to Python 3.12, setuptools. python -m pip install -U pip $(pip freeze --all | grep -oF setuptools) wheel python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
- name: Install project and test dependencies run: | Expand Down