(specfile: str)
| 118 | |
| 119 | |
| 120 | def _pyinstaller(specfile: str) -> None: |
| 121 | print(f"Invoking PyInstaller with {specfile}...") |
| 122 | subprocess.check_call( |
| 123 | [ |
| 124 | "pyinstaller", |
| 125 | "--clean", |
| 126 | "--workpath", |
| 127 | TEMP_DIR / "pyinstaller/temp", |
| 128 | "--distpath", |
| 129 | TEMP_DIR / "pyinstaller/out", |
| 130 | specfile, |
| 131 | ], |
| 132 | cwd=here / "specs", |
| 133 | ) |
| 134 | |
| 135 | |
| 136 | @cli.command() |
no outgoing calls
no test coverage detected
searching dependent graphs…