Skip to content

Commit b3de81b

Browse files
committed
Try with python39=3.9.16-1
1 parent b532be2 commit b3de81b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/cygwin-test.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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: |

0 commit comments

Comments
 (0)