File tree Expand file tree Collapse file tree 1 file changed +2
-13
lines changed Expand file tree Collapse file tree 1 file changed +2
-13
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 git wget
33
+ packages : python39 python39-pip=23.0.1-1 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
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
-
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
-
69
58
- name : Install project and test dependencies
70
59
run : |
71
- pip install ".[test]"
60
+ python -m pip install ".[test]"
72
61
73
62
- name : Show version and platform information
74
63
run : |
You can’t perform that action at this time.
0 commit comments