File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ PyInstaller.utils.git
4343PyInstaller.utils.hooks.django
4444PyInstaller.utils.hooks.gi
4545PyInstaller.utils.hooks.qt
46+ PyInstaller.utils.hooks.setuptools
4647PyInstaller.utils.hooks.tcl_tk
4748PyInstaller.utils.misc
4849PyInstaller.utils.osx
Original file line number Diff line number Diff line change 1- version = " 6.9 .*"
1+ version = " 6.10 .*"
22upstream_repository = " https://github.com/pyinstaller/pyinstaller"
3- requires = [" types-setuptools" ]
4-
5- [tool .stubtest ]
6- extras = [" completion" ]
Original file line number Diff line number Diff line change @@ -42,5 +42,4 @@ class Splash(Target):
4242 always_on_top : bool = True ,
4343 ) -> None : ...
4444 def assemble (self ) -> None : ...
45- def test_tk_version (self ) -> None : ...
4645 def generate_script (self ) -> str : ...
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ is_py39: Final[bool]
1414is_py310 : Final [bool ]
1515is_py311 : Final [bool ]
1616is_py312 : Final [bool ]
17+ is_py313 : Final [bool ]
1718is_win : Final [bool ]
1819is_win_10 : Final [bool ]
1920is_win_11 : Final [bool ]
@@ -31,6 +32,7 @@ is_musl: Final[bool]
3132is_macos_11_compat : Final [bool ]
3233is_macos_11_native : Final [bool ]
3334is_macos_11 : Final [bool ]
35+ is_nogil : Final [bool ]
3436PYDYLIB_NAMES : Final [set [str ]]
3537base_prefix : Final [str ]
3638is_venv : Final [bool ]
You can’t perform that action at this time.
0 commit comments