File tree 4 files changed +4
-6
lines changed
4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ PyInstaller.utils.git
43
43
PyInstaller.utils.hooks.django
44
44
PyInstaller.utils.hooks.gi
45
45
PyInstaller.utils.hooks.qt
46
+ PyInstaller.utils.hooks.setuptools
46
47
PyInstaller.utils.hooks.tcl_tk
47
48
PyInstaller.utils.misc
48
49
PyInstaller.utils.osx
Original file line number Diff line number Diff line change 1
- version = " 6.9 .*"
1
+ version = " 6.10 .*"
2
2
upstream_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):
42
42
always_on_top : bool = True ,
43
43
) -> None : ...
44
44
def assemble (self ) -> None : ...
45
- def test_tk_version (self ) -> None : ...
46
45
def generate_script (self ) -> str : ...
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ is_py39: Final[bool]
14
14
is_py310 : Final [bool ]
15
15
is_py311 : Final [bool ]
16
16
is_py312 : Final [bool ]
17
+ is_py313 : Final [bool ]
17
18
is_win : Final [bool ]
18
19
is_win_10 : Final [bool ]
19
20
is_win_11 : Final [bool ]
@@ -31,6 +32,7 @@ is_musl: Final[bool]
31
32
is_macos_11_compat : Final [bool ]
32
33
is_macos_11_native : Final [bool ]
33
34
is_macos_11 : Final [bool ]
35
+ is_nogil : Final [bool ]
34
36
PYDYLIB_NAMES : Final [set [str ]]
35
37
base_prefix : Final [str ]
36
38
is_venv : Final [bool ]
You can’t perform that action at this time.
0 commit comments