Skip to content

Commit db9d018

Browse files
authored
Merge pull request #1343 from pganssle/release_2.9.0
Release 2.9.0
2 parents 8fe0cab + 423ca2f commit db9d018

File tree

12 files changed

+42
-16
lines changed

12 files changed

+42
-16
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
uses: actions/setup-python@v3
2828
with:
2929
python-version: '3.9'
30+
- name: Run updatezinfo.py (Unix)
31+
run: |
32+
python -m venv venv
33+
venv/bin/pip install -e .
34+
./ci_tools/retry.sh venv/bin/python updatezinfo.py
3035
- name: Install dependencies
3136
run: |
3237
python -m pip install --upgrade pip

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include LICENSE NEWS zonefile_metadata.json updatezinfo.py pyproject.toml
2-
recursive-include tests/
2+
recursive-include tests/ *
33
global-exclude __pycache__
44
global-exclude *.py[co]

NEWS

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
Version 2.9.0 (2024-02-29)
2+
==========================
3+
4+
Data updates
5+
------------
6+
7+
- Updated tzdata version to 2024a. (gh pr #1342)
8+
9+
10+
Features
11+
--------
12+
13+
- Made all ``dateutil`` submodules lazily imported using `PEP 562
14+
<https://www.python.org/dev/peps/pep-0562/>`_. On Python 3.7+, things like
15+
``import dateutil; dateutil.tz.gettz("America/New_York")`` will now work
16+
without explicitly importing ``dateutil.tz``, with the import occurring behind
17+
the scenes on first use. The old behavior remains on Python 3.6 and earlier.
18+
Fixed by Orson Adams. (gh issue #771, gh pr #1007)
19+
20+
21+
Bugfixes
22+
--------
23+
24+
- Removed a call to ``datetime.utcfromtimestamp``, which is deprecated as of Python 3.12. Reported by Hugo van Kemenade (gh pr #1284), fixed by Thomas Grainger (gh pr #1285).
25+
26+
27+
Documentation changes
28+
---------------------
29+
30+
- Added note into docs and tests where relativedelta would return last day of the month
31+
only if the same day on a different month resolves to a date that doesn't exist.
32+
Reported by @hawkEye-01 (gh issue #1167). Fixed by @Mifrill (gh pr #1168)
33+
34+
135
Version 2.8.2 (2021-07-08)
236
==========================
337

changelog.d/1007.feature.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

changelog.d/1167.doc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog.d/1174.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1211.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1284.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1286.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1342.data.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)