Skip to content
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

Fix pendulum.tz.timezones() to use system tzdata #801

Merged
merged 5 commits into from
Mar 31, 2025

Conversation

mgorny
Copy link
Contributor

@mgorny mgorny commented Feb 2, 2024

Fix the pendulum.tz.available_timezones() to use available_timezones() function instead of iterating over the files in tzdata package. This is more in line with PEP 615, as the system timezone functions will operate on system-provided tzdata when available, and use the tzdata package only if it's not available. Therefore, the previous code would yield a potentially different list of timezones than the system actually provides.

Furthermore, Gentoo provides a dummy tzdata package that does not provide any data, since Python always uses system tzdata. This change is necessary to make pendulum work again on Gentoo.

Fixes #769

Pull Request Check List

  • Added tests for changed code.
  • Updated documentation for changed code.

@mgorny
Copy link
Contributor Author

mgorny commented Mar 13, 2024

Gentle ping.

@Secrus Secrus closed this Dec 17, 2024
@Secrus Secrus reopened this Dec 17, 2024
@Secrus
Copy link
Collaborator

Secrus commented Dec 17, 2024

@mgorny could you please rebase?

@mgorny
Copy link
Contributor Author

mgorny commented Dec 18, 2024

@mgorny could you please rebase?

I can. But since you've already merged master into it, could you confirm that you still want me to rebase?

@Secrus
Copy link
Collaborator

Secrus commented Mar 31, 2025

Hey @mgorny sorry for the delays and merge/rebase mess. I would appreciate a rebase (I won't interfere this time 🙈).

Fix the `pendulum.tz.available_timezones()` to use
`available_timezones()` function instead of iterating over the files
in `tzdata` package.  This is more in line with PEP 615, as the system
timezone functions will operate on system-provided tzdata when
available, and use the `tzdata` package only if it's not available.
Therefore, the previous code would yield a potentially different list
of timezones than the system actually provides.

Furthermore, Gentoo provides a dummy `tzdata` package that does not
provide any data, since Python always uses system tzdata.  This change
is necessary to make pendulum work again on Gentoo.

Fixes python-pendulum#769
Copy link

codspeed-hq bot commented Mar 31, 2025

CodSpeed Performance Report

Merging #801 will not alter performance

Comparing mgorny:system-tzdata (02890eb) with master (6705906)

Summary

✅ 1 untouched benchmarks

@mgorny
Copy link
Contributor Author

mgorny commented Mar 31, 2025

Rebased, fixed typing and ruff lints, implemented suggestions from @dvzrv.

Copy link
Collaborator

@Secrus Secrus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me, thank you for your work!

@Secrus Secrus merged commit df5a7d7 into python-pendulum:master Mar 31, 2025
18 checks passed
@mgorny
Copy link
Contributor Author

mgorny commented Mar 31, 2025

Thanks!

@mgorny mgorny deleted the system-tzdata branch March 31, 2025 15:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Use system provided tzdata as a priority
3 participants