Skip to content

Commit fd49bcf

Browse files
committed
Pin pip with pip (Cygwin package doesn't pin)
This tries with an older pip, but if the problem is the build rather than the version, then it would also help.
1 parent 4c9df43 commit fd49bcf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cygwin-test.yml

Lines changed: 5 additions & 1 deletion
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=23.0.1-1 python39-virtualenv git
33+
packages: python39 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,6 +55,10 @@ jobs:
5555
# and cause subsequent tests to fail
5656
cat test/fixtures/.gitconfig >> ~/.gitconfig
5757
58+
- name: Pin pip
59+
run: |
60+
python -m pip install pip==23.3.1
61+
5862
- name: Install project and test dependencies
5963
run: |
6064
python -m pip install ".[test]"

0 commit comments

Comments
 (0)