File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 30
30
- name : Install Cygwin
31
31
uses : cygwin/cygwin-install-action@v4
32
32
with :
33
- packages : python39 python39-pip python39-virtualenv python39-wheel git
33
+ packages : python39 python39-pip python39-virtualenv git
34
34
add-to-path : false # No need to change $PATH outside the Cygwin environment.
35
35
36
36
- name : Arrange for verbose output
@@ -55,14 +55,19 @@ jobs:
55
55
# and cause subsequent tests to fail
56
56
cat test/fixtures/.gitconfig >> ~/.gitconfig
57
57
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
+
58
63
- name : Update PyPA packages
59
64
run : |
60
65
# Get the latest pip, wheel, and prior to Python 3.12, setuptools.
61
66
python -m pip -vvv install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
62
67
63
68
- name : Install project and test dependencies
64
69
run : |
65
- python -m pip -vvv install ".[test]"
70
+ pip install -vvv ".[test]"
66
71
67
72
- name : Show version and platform information
68
73
run : |
You can’t perform that action at this time.
0 commit comments