We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9342877 + 8858e74 commit 6b7e858Copy full SHA for 6b7e858
docs/changelog.rst
@@ -6,6 +6,7 @@ v2.0.2
6
======
7
8
* Package now always includes its data. Closes #93.
9
+* Declare hidden imports for PyInstaller. Closes #101.
10
11
v2.0.1
12
hook-importlib_resources.py
@@ -0,0 +1,5 @@
1
+# Used by pyinstaller to expose hidden imports
2
+
3
+# Remove when trees module is removed. Ref #101.
4
5
+hiddenimports = ['importlib_resources.trees']
importlib_resources/__init__.py
@@ -7,7 +7,8 @@
as_file, files,
)
-# for compatibility. Ref #88
+# For compatibility. Ref #88.
+# Also requires hook-importlib_resources.py (Ref #101).
__import__('importlib_resources.trees')
13
14
0 commit comments