-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Temporarily remove 3.12
from the python-version
list in CI workflow.
#350
Conversation
This still fails with:
which is the problem mentioned in #330 (aio-libs/aiohttp#7229). Ok to remove |
I don't think there's any other option if we want to keep the CI green, unfortunately. I've hit the aiohttp issue in a few other projects, as well :/ |
Yes, let's remove it! (We can have a draft PR to add it back instead.) |
@@ -24,6 +24,7 @@ jobs: | |||
uses: actions/setup-python@v4 | |||
with: | |||
python-version: ${{ matrix.python-version }} | |||
allow-prereleases: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left this here so that we don't forget, but I could also remove it and it to the draft PR that adds 3.12
back if you prefer:
allow-prereleases: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine to leave it in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
python-version
list in CI workflow.3.12
from the python-version
list in CI workflow.
This is an attempt to fix the CI failures that are blocking other PRs.
#348 and #349 are failing with:
and
onexc
was introduced in3.12
, but possibly after the alpha that is currently pinned.However bumping it to
3.12
will probably cause other issues (like the ones seen in #330), so this is just an attempt to see if it works, and if not I'm planning to just remove3.12
altogether for the time being.