mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
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 2abededbc4
)
Co-authored-by: Paul Ganssle <paul@ganssle.io>
This commit is contained in:
parent
20736b35b7
commit
b5bd4358fc
2 changed files with 5 additions and 1 deletions
|
@ -1429,6 +1429,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
|
|||
test/test_importlib/source \
|
||||
test/test_importlib/zipdata01 \
|
||||
test/test_importlib/zipdata02 \
|
||||
test/test_zoneinfo test/test_zoneinfo/data \
|
||||
test/ziptestdata \
|
||||
asyncio \
|
||||
test/test_asyncio \
|
||||
|
@ -1450,7 +1451,8 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
|
|||
multiprocessing multiprocessing/dummy \
|
||||
unittest unittest/test unittest/test/testmock \
|
||||
venv venv/scripts venv/scripts/common venv/scripts/posix \
|
||||
curses pydoc_data
|
||||
curses pydoc_data \
|
||||
zoneinfo
|
||||
libinstall: build_all $(srcdir)/Modules/xxmodule.c
|
||||
@for i in $(SCRIPTDIR) $(LIBDEST); \
|
||||
do \
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Fixed an issue where the :mod:`zoneinfo` module and its tests were not
|
||||
included when Python is installed with ``make``.
|
Loading…
Add table
Add a link
Reference in a new issue