8000 Temporarily remove `3.12` from the `python-version` list in CI workflow. by ezio-melotti · Pull Request #350 · python/blurb_it · GitHub
[go: up one dir, main page]

Skip to content

Temporarily remove 3.12 from the python-version list in CI workflow. #350

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove 3.12 from the python-version list.
  • Loading branch information
ezio-melotti authored Aug 15, 2023
commit 475f4c752a9c8b23e4c870208d9f8fb113af2f15
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
# TODO replace 3.12.0-alpha.4 with 3.12-dev when
# aiohttp, frozenlist and yarl support alpha 5+
# TODO: add back 3.12 when the aiohttp issue is fixed, see
# https://github.com/python/blurb_it/pull/330#issuecomment-1449496275
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# and https://github.com/aio-libs/aiohttp/issues/7229
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
0