Merge branch 'main' into issue-655

pull/877/head
Nicco Kunzmann 2025-09-29 13:45:52 +01:00 zatwierdzone przez GitHub
commit 99cc91ba33
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -30,6 +30,7 @@ Minor changes:
- Improve contributing documentation by adding a change log requirement, adding a pull request template, adding clear CI enforcement warnings, and updating ``README.rst``. See `Issue 890 <https://github.com/collective/icalendar/issues/890>`_.
- Make coverage submission optional for CI.
- Bump ``actions/setup-python`` version from 5 to 6 for CI.
- Add comment explaining tzdata dependency purpose to prevent confusion. See `Issue 900 <https://github.com/collective/icalendar/issues/900>`_.
Breaking changes:

Wyświetl plik

@ -75,6 +75,8 @@ dependencies = [
# install requirements depending on python version, TODO: Remove with Python 3.8
# see https://www.python.org/dev/peps/pep-0508/#environment-markers
"backports.zoneinfo; python_version < '3.9'",
# tzdata: IANA timezone database fallback for zoneinfo (required on Windows,
# provides current timezone data on all platforms)
"tzdata"
]