Skip to content

Commit

Permalink
Try Python 3.9 with other details the same
Browse files Browse the repository at this point in the history
Changing it to Python 3.8 worked, but I want to check that it was
actually the use of Python 3.8, rather than other seemingly small
changes made to support using Python 3.8, that made the difference.
  • Loading branch information
EliahKagan committed Jan 27, 2024
1 parent 34bbf73 commit b55cbfb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cygwin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install Cygwin
uses: cygwin/cygwin-install-action@v4
with:
packages: python38 python38-pip python38-virtualenv git
packages: python39 python39-pip python39-virtualenv git
add-to-path: false # No need to change $PATH outside the Cygwin environment.

- name: Arrange for verbose output
Expand Down Expand Up @@ -58,20 +58,20 @@ jobs:
- name: Update PyPA packages
run: |
# Get the latest pip, setuptools, and wheel.
python3.8 -m pip install -U pip setuptools wheel
python3.9 -m pip install -U pip setuptools wheel
- name: Install project and test dependencies
run: |
python3.8 -m pip install ".[test]"
python3.9 -m pip install ".[test]"
- name: Show version and platform information
run: |
uname -a
command -v git python3.8
command -v git python3.9
git version
python3.8 --version
python3.8 -c 'import os, sys; print(f"sys.platform={sys.platform!r}, os.name={os.name!r}")'
python3.9 --version
python3.9 -c 'import os, sys; print(f"sys.platform={sys.platform!r}, os.name={os.name!r}")'
- name: Test with pytest
run: |
python3.8 -m pytest --color=yes -p no:sugar --instafail -vv
python3.9 -m pytest --color=yes -p no:sugar --instafail -vv

0 comments on commit b55cbfb

Please sign in to comment.