mirror of
https://github.com/muziing/Py2exe-GUI.git
synced 2025-01-27 17:02:55 +08:00
669a056a55
新功能: - 添加通过脚本形式启动 Py2exe-GUI 的功能 - 增加 `PyInstaller命令选项详情` 窗口 - 将 `IconFileDlg` 默认打开目录自动设置为脚本所在目录 修复与增强: - 增强 `SubProcessTool` 调试能力,添加当子进程发生错误时向终端输出的警告信息;调整启动子进程与显示对话框窗口的顺序,确保子进程输出信息能够被捕获; - 增强获取运行时信息机制,获取平台、用户语言等; - 调整部分槽函数位置与组织结构,使能通过 Mypy 检查; 依赖项更新: - 更新数个开发依赖工具版本
28 lines
545 B
YAML
28 lines
545 B
YAML
fail_fast: false
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.12.0
|
|
hooks:
|
|
- id: black
|
|
args: [--config, "./pyproject.toml"]
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.13.1
|
|
hooks:
|
|
- id: isort
|
|
args: [--settings-path, "./pyproject.toml"]
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.1.7
|
|
hooks:
|
|
- id: ruff
|