Skip to content

Commit 4c9df43

Browse files
committed
Try with python39-pip=23.0.1-1
And don't upgrade it or other PyPI packages.
1 parent 7be530a commit 4c9df43

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/cygwin-test.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install Cygwin
3131
uses: cygwin/cygwin-install-action@v4
3232
with:
33-
packages: python39 python39-pip python39-virtualenv git wget
33+
packages: python39 python39-pip=23.0.1-1 python39-virtualenv git
3434
add-to-path: false # No need to change $PATH outside the Cygwin environment.
3535

3636
- name: Arrange for verbose output
@@ -55,20 +55,9 @@ jobs:
5555
# and cause subsequent tests to fail
5656
cat test/fixtures/.gitconfig >> ~/.gitconfig
5757
58-
- name: Ensure the "pip" command is available
59-
run: |
60-
# This is used unless, and before, an updated pip is installed.
61-
ln -s pip3 /usr/bin/pip
62-
63-
- name: Update PyPA packages
64-
run: |
65-
# Get the latest pip, wheel, and prior to Python 3.12, setuptools.
66-
wget -P ~/.cache/pip 'https://files.pythonhosted.org:443/packages/c7/c3/55076fc728723ef927521abaa1955213d094933dc36d4a2008d5101e1af5/wheel-0.42.0-py3-none-any.whl'
67-
python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
68-
6958
- name: Install project and test dependencies
7059
run: |
71-
pip install ".[test]"
60+
python -m pip install ".[test]"
7261
7362
- name: Show version and platform information
7463
run: |

0 commit comments

Comments
 (0)