From 07239ac21a68ced86860cf3bb52ee0c60faf0915 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 2 May 2022 12:18:48 +1000 Subject: [PATCH] Document fix for module importers using deprecated APIs. --- docs/changes.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/changes.rst b/docs/changes.rst index 7db07a64..203a8f93 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,18 @@ Release Notes ============= +Version 1.14.1 +-------------- + +**Bugs Fixed** + +* When the post import hooks mechanism was being used, and a Python package with + its own custom module importer was used, importing modules could fail if the + custom module importer didn't use the latest Python import hook finder/loader + APIs and instead used the deprecated API. This was actually occurring with the + `zipimporter` in Python itself, which was not updated to use the newer Python + APIs until Python 3.10. + Version 1.14.0 --------------