-
Notifications
You must be signed in to change notification settings - Fork 85
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
Release Traits 6.4.3 #1756
Release Traits 6.4.3 #1756
Conversation
If we're going to make a release, it would make sense to also bump the cibuildwheel action version so that we get wheels for Python 3.12. |
8ec1d65
to
e42ed79
Compare
e42ed79
to
b49bf72
Compare
This PR replaces uses of the deprecated (as of Python 3.12) `datetime.utcnow` method. Note that this isn't quite a like-for-like change: there's a slight difference in the output format. Given that the event tracer is barely used in practice, I doubt this change matters much. ``` >>> from datetime import datetime, timezone >>> datetime.now(timezone.utc).isoformat(" ") '2023-09-11 16:31:35.534330+00:00' >>> datetime.utcnow().isoformat(" ") '2023-09-11 16:31:56.798474' ``` (cherry picked from commit 36a95d5)
…ng the pygments hang
@mdickinson it looks like we might want to setup concurrency/cancel-in-progress for the CI jobs. |
Agreed, but not in this PR. I'll cancel the stale jobs manually. |
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 just ran the wheel building workflow on this branch; all looks good. https://github.com/enthought/traits/actions/runs/6457001562 Releasing shortly. |
This PR:
EDIT: Updated 2023-09-11 to backport PRs #1757 and #1758.