Python: Bump extractor version and add change note

This commit is contained in:
Taus
2025-11-27 13:52:37 +00:00
parent 458f8570e8
commit f55ff96674
2 changed files with 6 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ from io import BytesIO
#Semantic version of extractor.
#Update this if any changes are made
VERSION = "7.1.5"
VERSION = "7.1.6"
PY_EXTENSIONS = ".py", ".pyw"

View File

@@ -0,0 +1,5 @@
---
category: fix
---
- Fixed a bug in the Python extractor's import handling where failing to find an import in `find_module` would cause a `KeyError` to be raised. (Contributed by @akoeplinger.)