-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overhauled compiling, updated to PyInstaller 6.2.0
PyInstaller's 6.0.0 update brought a `--contents-directory` argument, making most of my previous work moot. A hook is no longer needed, and other breaking changes have been corrected. Other `executable/build.py` changes: - `compiled/release` is now automatically flattened to just `compiled` - Everything in `compiled/bin` now gets flattened at once, altogether - `executable/exclude.txt` no longer has to exist - `executable/exclude.txt` now supports comments (//, #, or ;) - In-progress compiles are temporarily saved to `executable/compiling`, with the old build not being deleted until the very end - Any config, history, or undo files present in the old build are now reused. Likewise, such files in the `executable` folder will act as override-files and will always be used if present The gitignore, requirements, and compiling readme have been updated too.
- Loading branch information
1 parent
cb17300
commit 3176ef2
Showing
8 changed files
with
83 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
keyboard | ||
pymediainfo | ||
pystray | ||
requests | ||
send2trash | ||
win32-setctime | ||
keyboard>=0.13.5 | ||
pymediainfo>=6.1.0 | ||
pyinstaller>=6.2.0 | ||
pystray>=0.19.5 | ||
requests>=2.31.0 | ||
send2trash>=1.8.2 | ||
win32-setctime>=1.1.0 |