Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mhils/pyinstaller-pyproject-editable

MRE for a PyInstaller Bug
https://github.com/mhils/pyinstaller-pyproject-editable

Last synced: about 1 month ago
JSON representation

MRE for a PyInstaller Bug

Awesome Lists containing this project

README

        

# PyInstaller + editable `pyproject.toml` installs

**Working:**

```
$ pip install .
$ pyinstaller --clean --onefile bin/repro.py
$ dist/repro
hello world
```

**Crash:**

```
$ pip install -e .
$ pyinstaller --clean --onefile bin/repro.py
$ dist/repro
Traceback (most recent call last):
File "repro.py", line 1, in
ModuleNotFoundError: No module named 'my_module'
[2041] Failed to execute script 'repro' due to unhandled exception!
```