1
0
Fork 0

[build] Bump PyInstaller minimum version requirement to 6.17.0 (#15199)

Ref: https://github.com/pyinstaller/pyinstaller/issues/9149

Authored by: bashonly
This commit is contained in:
bashonly 2025-11-29 15:18:49 -06:00 committed by GitHub
commit 2801650268
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 11 deletions

View file

@ -69,7 +69,7 @@ build = [
"build",
"hatchling>=1.27.0",
"pip",
"setuptools>=71.0.2,<81", # See https://github.com/pyinstaller/pyinstaller/issues/9149
"setuptools>=71.0.2",
"wheel",
]
dev = [
@ -86,7 +86,7 @@ test = [
"pytest-rerunfailures~=14.0",
]
pyinstaller = [
"pyinstaller>=6.13.0", # Windows temp cleanup fixed in 6.13.0
"pyinstaller>=6.17.0", # 6.17.0+ needed for compat with setuptools 81+
]
[project.urls]