File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 "editor.defaultFormatter" : " redhat.vscode-yaml"
6161 },
6262 "yaml.format.printWidth" : 100 ,
63+ "yaml.schemas" : {
64+ "https://json.schemastore.org/github-issue-config.json" : " .github/ISSUE_TEMPLATE/config.yml"
65+ },
6366 "[python]" : {
6467 "editor.defaultFormatter" : " charliermarsh.ruff" ,
6568 "editor.tabSize" : 4 ,
Original file line number Diff line number Diff line change 33 "windows" : {
44 "options" : {
55 "shell" : {
6- "executable" : " powershell " ,
6+ "executable" : " pwsh " ,
77 "args" : [
88 " -NoProfile" ,
99 " -ExecutionPolicy" ,
Original file line number Diff line number Diff line change @@ -20,18 +20,19 @@ if ($IsWindows) {
2020 # These are used on Linux
2121 $arguments += @ (
2222 # Installed by PyAutoGUI
23- ' --exclude=pyscreeze'
23+ ' --exclude=pyscreeze' ,
2424 # Sometimes installed by other automation/image libraries.
2525 # 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' )
2729}
2830if ($IsLinux ) {
2931 $arguments += @ (
3032 # Required on the CI for PyWinCtl
3133 ' --hidden-import pynput.keyboard._xorg' ,
3234 ' --hidden-import pynput.mouse._xorg' )
3335}
34-
3536Start-Process - Wait - NoNewWindow pyinstaller - ArgumentList $arguments
3637
3738If ($IsLinux ) {
You can’t perform that action at this time.
0 commit comments