Replies: 1 comment 5 replies
-
@iot49 Freezing should make no difference to the behavior of the code. Anything that works on the filesystem should work identically when it's frozen. What you have should work (and works for me, both frozen and filesystem). I will note that |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to freeze a package with a sub-package, i.e.
My
manifest.py
looks as follows:The following do not work:
My questions:
package_nest
)?from . import ...
, etc)?Of course it's possible to accomplish all this without nested packages or relative imports. Just the namespace get a bit more cluttered.
P.S. Without freezing everything works as expected. Also, other (not nested) packages and module work as expected after freezing.
Beta Was this translation helpful? Give feedback.
All reactions