Skip to content
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ jobs:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version:
- "3.8"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's keep 3.8 (not 3.8.0) for now, we still want to test 3.8 for the upcoming bugfix release, and it seems to work on 22.04.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good - do we want to also include any earlier version that 22.04 supports?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feels not worth it, the testing on point releases is a bit of a spotcheck anyway. Thanks!

- "3.8.0"
- "3.9"
- "3.9.0"
- "3.9.12"
- "3.10"
- "3.10.0"
- "3.10.4"
- "3.11"
- "3.11.0"
- "3.12"
Expand All @@ -54,7 +53,7 @@ jobs:
- "pypy3.9"
- "pypy3.10"

runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -70,6 +69,7 @@ jobs:
# Be wary of running `pip install` here, since it becomes easy for us to
# accidentally pick up typing_extensions as installed by a dependency
cd src
python --version # just to make sure we're running the right one
python -m unittest test_typing_extensions.py

- name: Test CPython typing test suite
Expand Down
Loading