File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 60
60
"editor.defaultFormatter" : " redhat.vscode-yaml"
61
61
},
62
62
"yaml.format.printWidth" : 100 ,
63
+ "yaml.schemas" : {
64
+ "https://json.schemastore.org/github-issue-config.json" : " .github/ISSUE_TEMPLATE/config.yml"
65
+ },
63
66
"[python]" : {
64
67
"editor.defaultFormatter" : " charliermarsh.ruff" ,
65
68
"editor.tabSize" : 4 ,
Original file line number Diff line number Diff line change 3
3
"windows" : {
4
4
"options" : {
5
5
"shell" : {
6
- "executable" : " powershell " ,
6
+ "executable" : " pwsh " ,
7
7
"args" : [
8
8
" -NoProfile" ,
9
9
" -ExecutionPolicy" ,
Original file line number Diff line number Diff line change @@ -20,18 +20,19 @@ if ($IsWindows) {
20
20
# These are used on Linux
21
21
$arguments += @ (
22
22
# Installed by PyAutoGUI
23
- ' --exclude=pyscreeze'
23
+ ' --exclude=pyscreeze' ,
24
24
# Sometimes installed by other automation/image libraries.
25
25
# Keep this exclusion even if nothing currently installs it, to stay future-proof.
26
- ' --exclude=PIL' )
26
+ ' --exclude=PIL' ,
27
+ # Hidden import by winrt.windows.graphics.imaging.SoftwareBitmap.create_copy_from_surface_async
28
+ ' --hidden-import=winrt.windows.foundation' )
27
29
}
28
30
if ($IsLinux ) {
29
31
$arguments += @ (
30
32
# Required on the CI for PyWinCtl
31
33
' --hidden-import pynput.keyboard._xorg' ,
32
34
' --hidden-import pynput.mouse._xorg' )
33
35
}
34
-
35
36
Start-Process - Wait - NoNewWindow pyinstaller - ArgumentList $arguments
36
37
37
38
If ($IsLinux ) {
You can’t perform that action at this time.
0 commit comments