refactor(backend): replace pytz with stdlib zoneinfo/datetime.UTC#1147
Merged
refactor(backend): replace pytz with stdlib zoneinfo/datetime.UTC#1147
Conversation
Agent-Logs-Url: https://github.com/adfinis/timed/sessions/8f04d1f6-b01e-426a-8813-8a27c5d192df Co-authored-by: hairmare <[email protected]>
Agent-Logs-Url: https://github.com/adfinis/timed/sessions/84f0bb2d-6dd4-47d1-9025-dd1261cca938 Co-authored-by: hairmare <[email protected]>
Copilot created this pull request from a session on behalf of
hairmare
April 1, 2026 15:16
View session
…-to-stdlib-datetime
Collaborator
|
CI failing due to #1105 |
…-to-stdlib-datetime
c0rydoras
approved these changes
Apr 2, 2026
Collaborator
c0rydoras
left a comment
There was a problem hiding this comment.
one less dependency to worry about 🚀
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
pytzwas a direct runtime dependency used in exactly one place: a 2017 data migration. Replace it with stdlib equivalents available since Python 3.9/3.11, eliminating the third-party dependency entirely.Changes
migrations/0002_auto_20170912_1346.py— swap pytz primitives for stdlib:pytz.timezone(name)→ZoneInfo(name)(zoneinfo, stdlib since 3.9)pytz.utc→UTC(datetime.UTC, stdlib since 3.11; project targets 3.12)pyproject.toml— removepytzdependencypoetry.lock— regenerated