Skip to content

Commit b5bd435

Browse files
bpo-40683: Add zoneinfo to LIBSUBDIRS (GH-20229)
Without this, only the _zoneinfo module is getting installed, not the zoneinfo module. I believe this was not noticed earlier because test.test_zoneinfo was also not being installed. (cherry picked from commit 2abeded) Co-authored-by: Paul Ganssle <[email protected]>
1 parent 20736b3 commit b5bd435

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile.pre.in

+3-1
Original file line numberDiff line numberDiff line change
@@ -1429,6 +1429,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
14291429
test/test_importlib/source \
14301430
test/test_importlib/zipdata01 \
14311431
test/test_importlib/zipdata02 \
1432+
test/test_zoneinfo test/test_zoneinfo/data \
14321433
test/ziptestdata \
14331434
asyncio \
14341435
test/test_asyncio \
@@ -1450,7 +1451,8 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
14501451
multiprocessing multiprocessing/dummy \
14511452
unittest unittest/test unittest/test/testmock \
14521453
venv venv/scripts venv/scripts/common venv/scripts/posix \
1453-
curses pydoc_data
1454+
curses pydoc_data \
1455+
zoneinfo
14541456
libinstall: build_all $(srcdir)/Modules/xxmodule.c
14551457
@for i in $(SCRIPTDIR) $(LIBDEST); \
14561458
do \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fixed an issue where the :mod:`zoneinfo` module and its tests were not
2+
included when Python is installed with ``make``.

0 commit comments

Comments
 (0)