File tree 1 file changed +2
-9
lines changed
1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,14 @@ jobs:
30
30
- name : Install Cygwin
31
31
uses : cygwin/cygwin-install-action@v4
32
32
with :
33
- packages : python39 python39-pip python39-virtualenv git
33
+ packages : python39 python39-pip python39-virtualenv git wget
34
34
add-to-path : false # No need to change $PATH outside the Cygwin environment.
35
35
36
36
- name : Arrange for verbose output
37
37
run : |
38
38
# Arrange for verbose output but without shell environment setup details.
39
39
echo 'set -x' >~/.bash_profile
40
40
41
- - name : Add PyPI hosts file entry # NOTE: Actually edits the Windows hosts file.
42
- run : |
43
- echo '199.232.96.223 files.pythonhosted.org' >>/etc/hosts
44
-
45
- - name : Show hosts file
46
- run : |
47
- cat /etc/hosts
48
-
49
41
- name : Special configuration for Cygwin git
50
42
run : |
51
43
git config --global --add safe.directory "$(pwd)"
71
63
- name : Update PyPA packages
72
64
run : |
73
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'
74
67
python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
75
68
76
69
- name : Install project and test dependencies
You can’t perform that action at this time.
0 commit comments