Add missing pip in $PATH on Cygwin CI by EliahKagan · Pull Request #1784 · gitpython-developers/GitPython
- 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: |