This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author p-ganssle
Recipients lukasz.langa, p-ganssle
Date 2020-05-19.14:32:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589898775.24.0.801857102039.issue40683@roundup.psfhosted.org>
In-reply-to
Content
Apparently something is wrong with make install for beta 1 and the `zoneinfo` module is not installed with it (only _zoneinfo).

When I run a local build `./python -c "import zoneinfo"` works, but when I do `make install` I get ImportError:

  $ bin/python3 -c "import zoneinfo"
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
  ModuleNotFoundError: No module named 'zoneinfo'

I assume this wasn't caught earlier because Lib/test/test_zoneinfo is *also* not being installed.

The C extension, _zoneinfo, is installed properly. I don't know if it is working on Windows.
History
Date User Action Args
2020-05-19 14:32:55p-gansslesetrecipients: + p-ganssle, lukasz.langa
2020-05-19 14:32:55p-gansslesetmessageid: <1589898775.24.0.801857102039.issue40683@roundup.psfhosted.org>
2020-05-19 14:32:55p-gansslelinkissue40683 messages
2020-05-19 14:32:54p-gansslecreate