The problem has been identified to gzip.py in the standard library that has an "import io" which has been hijacked by the scipy.io (checked with io.__all__). The numpy module npyio.py calls gzip.
However, none of my source files perform an "import os" or directly use gzip. The program that fails is at the statement: numpy.load(directory_path + "myarray.npy") numpy.load is in npyio.py and the first statement in that function is "import gzip". This appears to be a PyInstaller problem as it has not released scipy.io and replaced with the standard library io. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
