File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 3030 - name : Install Cygwin
3131 uses : cygwin/cygwin-install-action@v4
3232 with :
33- packages : python39 python39-pip python39-virtualenv git
33+ packages : python39=3.9.16-1 python39-pip python39-virtualenv git
3434 add-to-path : false # No need to change $PATH outside the Cygwin environment.
3535
3636 - name : Arrange for verbose output
@@ -63,14 +63,11 @@ jobs:
6363 - name : Update PyPA packages
6464 run : |
6565 # 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
6967
7068 - name : Install project and test dependencies
7169 run : |
72- export TEMP="$(pwd)/tmp" TMP="$(pwd)/tmp"
73- pip install -vvv --no-cache-dir ".[test]"
70+ pip -vvv install ".[test]"
7471
7572 - name : Show version and platform information
7673 run : |
You can’t perform that action at this time.
0 commit comments