person
Project description
NOTE: PyInstaller does not extend PYTHONPATH (sys.path) with this directory that contains bundled 3rd party libraries.
Some users complained that PyInstaller failed because their apps were using too old versions of some libraries that PyInstaller uses too and that’s why extending sys.path was dropped.
All libraries are tweaked to be importable as:
from PyInstaller.lib.LIB_NAME import xyz
In libraries replace imports like:
from altgraph import y from modulegraph import z
with relative prefix:
from ..altgraph import y from ..modulegraph import z
altgraph
add fixed version string to ./altgraph/__init__.py:
# For PyInstaller/lib/ define the version here, since there is no # package-resource. __version__ = '0.13'
modulegraph
https://bitbucket.org/ronaldoussoren/modulegraph/downloads
TODO Use official modulegraph version when following issue is resolved and pull request merged https://bitbucket.org/ronaldoussoren/modulegraph/issues/28/__main__-module-being-analyzed-for-wheel
add fixed version string to ./modulegraph/__init__.py:
# For PyInstaller/lib/ define the version here, since there is no # package-resource. __version__ = '0.13'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file testform_888-1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: testform_888-1.0-py2.py3-none-any.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d04eafd6e567aa3aa43744121112fdd4ed6a6bcdf880816880bbe338d6f3a714 |
|
MD5 | 28d70b95ece252f754ebe77e0c216fee |
|
BLAKE2b-256 | 651934b2fe7caaf84a4d16e539de804be10fa1dbb49dcae5a5839e70be07d563 |