-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
python 3.13 in workflows #9523
python 3.13 in workflows #9523
Conversation
could be worse:
|
Can you tell me where I see these warnings? I thought it should be visible for example in the Ubuntu Python 3.13 pytest job when I expand |
I might have mixed up poetry and poetry-core, eg in the poetry-core pull request https://github.com/python-poetry/poetry-core/actions/runs/9750266660/job/26909309129?pr=742
but this is also true in the 3.12 test so perhaps nothing much to do with 3.13 |
re-ran following the release of cffi 1.17.0, pretty much working now. Just one over-specified testcase that mysteriously is ever so slightly different on macos python 3.13. |
I assume we should just make the test more robust to allow any order in the output because |
or, maybe, make the tests run with a worker pool of size one so that they are not exposed to this sort of thing (I did take a brief look back in August and remember being puzzled as to what was going on, not expecting to try again though) |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.8 1.8
# Navigate to the new working tree
cd .worktrees/backport-1.8
# Create a new branch
git switch --create backport-9523-to-1.8
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 6c43ac34b047f186006d5731e9119cbc2f03144d
# Push it to GitHub
git push --set-upstream origin backport-9523-to-1.8
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.8 Then, create a pull request where the |
Co-authored-by: Randy Döring <[email protected]> (cherry picked from commit 6c43ac3)
Co-authored-by: Randy Döring <[email protected]> (cherry picked from commit 6c43ac3)
Co-authored-by: Randy Döring <[email protected]> (cherry picked from commit 6c43ac3)
Co-authored-by: Randy Döring <[email protected]> (cherry picked from commit 6c43ac3)
Co-authored-by: Randy Döring <[email protected]> (cherry picked from commit 6c43ac3)
Co-authored-by: Randy Döring <[email protected]>
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
time to find out what is broken at python 3.13