-
Notifications
You must be signed in to change notification settings - Fork 174
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
support logging on Python 3.13 fixed #546 #549
Conversation
Build failed. ✔️ ara-tox-py3 SUCCESS in 4m 12s |
I assume the test itself is not working, right?
No idea why tox complains about my change. 🤔 |
You didn't click on "more".
|
Thanks, I will fix this m( |
As linked on ansible-community#546, Python 3.13 finally removed the deprecate `.warn()`, so we now need to use `.warning()` instead.
Build succeeded. ✔️ ara-tox-py3 SUCCESS in 3m 30s |
Fixed (/) |
Hi @encbladexp, This looks great, thanks for looking at this! I'll double check that it fixes the issue and we can merge the PR. |
Tengentially related, we should probably find out about resolving this other deprecation before it bites us: #503 I'll put it on my radar before tagging a new release. |
I ran into unrelated issues (including #550) but I got a successful build and confirmed the deprecation notices were gone: https://koji.fedoraproject.org/koji/taskinfo?taskID=118918867 Good to merge 🎉 |
As linked on #546, Python 3.13 finally removed the deprecate
.warn()
, so we now need to use.warning()
instead.