-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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 python3.13 #11343
base: main
Are you sure you want to change the base?
Support python3.13 #11343
Conversation
Because Debian bullseye has been end-of-life at 2024-08-14. See <https://wiki.debian.org/DebianReleases>. So it would be a good idea to update bookworm for better security.
…thon >= 3.12. `datetime.datetime.utcnow()` is deprecated and planned to remove in a future version. See <https://github.com/python/cpython/blob/9e474a98af4184615540467dea16da05f4d284d8/Lib/_pydatetime.py#L1900-L1910>
Thanks for your pull request, and welcome to our community! We require contributors to sign our Contributor License Agreement and we don't seem to have your signature on file. Check out this article for more information on why we have a CLA. In order for us to review and merge your code, please submit the Individual Contributor License Agreement form attached above above. If you have questions about the CLA, or if you believe you've received this message in error, please reach out through a comment on this PR. CLA has not been signed by users: @FomalhautWeisszwerg |
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the contributing guide. |
Resolves #11106
Problem
Support for Python 3.13 is required. Also, there are some problems , so that need to be fixed.
Solution
DeprecationWarning
ofdatetime.datetime.utcnow
, replace it withdatetime.datetime.now(ZoneInfo("UTC"))
freezegun
andddtrace
Checklist