README.rst 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Custom modifications of 3rd party libraries
  2. ===========================================
  3. NOTE: PyInstaller does not extend PYTHONPATH (sys.path) with this directory
  4. that contains bundled 3rd party libraries.
  5. Some users complained that PyInstaller failed because their apps were using
  6. too old versions of some libraries that PyInstaller uses too and that's why
  7. extending sys.path was dropped.
  8. All libraries are tweaked to be importable as::
  9. from PyInstaller.lib.LIB_NAME import xyz
  10. In libraries replace imports like::
  11. from altgraph import y
  12. from modulegraph import z
  13. with relative prefix::
  14. from ..altgraph import y
  15. from ..modulegraph import z
  16. altgraph
  17. ----------
  18. - add fixed version string to ./altgraph/__init__.py::
  19. # For PyInstaller/lib/ define the version here, since there is no
  20. # package-resource.
  21. __version__ = '0.13'
  22. modulegraph
  23. -----------
  24. https://bitbucket.org/ronaldoussoren/modulegraph/downloads
  25. - TODO Use official modulegraph version when following issue is resolved and pull request merged
  26. https://bitbucket.org/ronaldoussoren/modulegraph/issues/28/__main__-module-being-analyzed-for-wheel
  27. - add fixed version string to ./modulegraph/__init__.py::
  28. # For PyInstaller/lib/ define the version here, since there is no
  29. # package-resource.
  30. __version__ = '0.13'