Skip to content

Commit

Permalink
PyInstaller 5.13.2に更新 (#765)
Browse files Browse the repository at this point in the history
* Update to PyInstaller 5.13.2

* update requirements.txt

* modify_pyinstaller.bash: waf command: add --target-arch="64bit"

* modify_pyinstaller.bash: waf command: --msvc_targets="x64"

Thanks: #724

* pyinstaller ^5.13
  • Loading branch information
aoirint authored Oct 16, 2023
1 parent 6506af4 commit 791f442
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build_util/modify_pyinstaller.bash
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ __declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
__declspec(dllexport) DWORD AmdPowerXpressRequestHighPerformance = 0x00000001;
#endif
EOF
(cd "$tempdir/bootloader" && python ./waf all)
(cd "$tempdir/bootloader" && python ./waf all --msvc_targets="x64")
pip install -U "$tempdir"
33 changes: 17 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ soxr = "^0.3.6"

[tool.poetry.group.dev.dependencies]
cython = "^0.29.34,>=0.29.33" # NOTE: for Python 3.11
pyinstaller = "^5.6,<5.7.0" # NOTE: 5.7.0 or higher will fail to build the bootloader.
pyinstaller = "^5.13"
pre-commit = "^2.16.0"
atomicwrites = "^1.4.0"
colorama = "^0.4.4"
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ptyprocess==0.7.0 ; python_version >= "3.11" and python_version < "3.12"
pycparser==2.21 ; python_version >= "3.11" and python_version < "3.12"
pydantic==1.10.12 ; python_version >= "3.11" and python_version < "3.12"
pyinstaller-hooks-contrib==2023.7 ; python_version >= "3.11" and python_version < "3.12"
pyinstaller==5.6.2 ; python_version >= "3.11" and python_version < "3.12"
pyinstaller==5.13.2 ; python_version >= "3.11" and python_version < "3.12"
pyopenjtalk @ git+https://github.com/VOICEVOX/pyopenjtalk@b35fc89fe42948a28e33aed886ea145a51113f88 ; python_version >= "3.11" and python_version < "3.12"
pyproject-hooks==1.0.0 ; python_version >= "3.11" and python_version < "3.12"
pyrsistent==0.19.3 ; python_version >= "3.11" and python_version < "3.12"
Expand Down

0 comments on commit 791f442

Please sign in to comment.