tzdata
tzdata copied to clipboard
Python package wrapping the IANA time zone database
- Upgrade github actions for test and publish to latest. Note: Have not tested the publish/release workflow. ## References https://github.com/actions/checkout https://github.com/actions/setup-python ## Future improvement https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
We should create an automated PR bot that watches for releases and makes a PR automatically if it detects a change. I can see two fairly simple ways of doing...
Currently the "update" script only pulls from the published tarballs. We should add a way to run intermittent tests against [upstream main](https://github.com/eggert/tz) as well (though I don't anticipate any issues...
I believe what we're shipping right now are the `posix/` zones, which are what everyone uses. There's also the `right/` database, which has leap second information and uses TAI instead...
I believe this should be licensed under either the PSF license or the Apache license. The data itself is public domain and comes from IANA.
All the official IANA releases are signed by Paul Eggert's keys. We should verify the tarballs against the equivalent `.asc` files as part of the update process.
Once #5 is done, we should have a simple mechanism for detecting when the version has been updated (either by the update script or by the version bumping script), and...
Currently we only have 2019c. It might be useful to backfill to include at least *some* old versions, which we can bulk upload to PyPI when the time comes.
First thing to do is to make sure that the `tox -e update` script doesn't do anything if you are already on the latest version. If it finds anything, we're...
Here is what it looks like:  I believe the issue is that all the newlines are getting removed for some reason. I won't let it block the current rollout,...