File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
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
33
+ packages : python39=3.9.16-1 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
@@ -63,14 +63,11 @@ jobs:
63
63
- name : Update PyPA packages
64
64
run : |
65
65
# Get the latest pip, wheel, and prior to Python 3.12, setuptools.
66
- mkdir -- "$(pwd)/tmp"
67
- export TEMP="$(pwd)/tmp" TMP="$(pwd)/tmp"
68
- python -m pip -vvv --no-cache-dir install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
66
+ python -m pip -vvv install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
69
67
70
68
- name : Install project and test dependencies
71
69
run : |
72
- export TEMP="$(pwd)/tmp" TMP="$(pwd)/tmp"
73
- pip install -vvv --no-cache-dir ".[test]"
70
+ pip -vvv install ".[test]"
74
71
75
72
- name : Show version and platform information
76
73
run : |
You can’t perform that action at this time.
0 commit comments