Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python environment defined in python.defaultInterpreterPath not returned in the Python API of known environments #22268

Closed
2 tasks done
melMass opened this issue Oct 19, 2023 · 21 comments · Fixed by #22389
Closed
2 tasks done
Assignees
Labels
area-environments Features relating to handling interpreter environments author-verification-requested Issues potentially verifiable by issue author bug Issue identified by VS Code Team member as probable bug verified Verification succeeded
Milestone

Comments

@melMass
Copy link

melMass commented Oct 19, 2023

Applies To

  • Notebooks (.ipynb files)
  • Interactive Window and/or Cell Scripts (.py files with #%% markers)

What happened?

Hi,

I can't understand how Jupyter resolves the interpreter.
I'm using pyenv to manage my python versions and always work in virtualenvs.
Everything works fine in the core python extension and respects the python.defaultInterpreterPath.
Setting the python.defaultInterpreterPath does add it to the kernel selector menu, but running a cell just starts an infinite loop that can't be stopped.

Looking at the log there are a few strange stuff like my username is melMass but it resolves to <username>Mass?

VS Code Version

1.84.0-insider, undefined, desktop

Jupyter Extension Version

2023.10.1002931100

Jupyter logs

Visual Studio Code - Insiders (1.84.0-insider, undefined, desktop)
Jupyter Extension Version: 2023.10.1002931100.
Python Extension Version: 2023.19.12911010.
Platform: win32 (x64).
Workspace folder ~\dev\melMass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils, Home = c:\Users\User
14:17:31.474 [info] Telemetry level is off
14:17:31.474 [info] Experiments are disabled, only manually opted experiments are active.
14:17:31.557 [info] Start refreshing Kernel Picker (1697717851557)
14:17:31.559 [info] Using Pylance
14:17:31.595 [info] Start refreshing Interpreter Kernel Picker
14:17:32.091 [info] Starting Kernel startUsingPythonInterpreter, .jvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.-m#ipykernel_launcher  (Python Path: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, Venv, .venv, 3.10.11) for '~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb' (disableUI=true)
14:17:32.734 [info] Process Execution: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)"
14:17:32.747 [info] Process Execution: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe -m pip list
14:17:32.798 [warn] Failed to get activated env vars for ~\.pyenv\pyenv-win\shims\python in 59ms
14:17:32.804 [info] Process Execution: ~\.pyenv\pyenv-win\shims\python -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");"
14:17:32.804 [error] Jupyter Extension (Error in getExecutablesPath, method:getExecutablesPath): [Error: spawn ~\.pyenv\pyenv-win\shims\python ENOENT
	at ChildProcess._handle.onexit (node:internal/child_process:283:19)
	at onErrorNT (node:internal/child_process:476:16)
	at process.processTicksAndRejections (node:internal/process/task_queues:82:21)] {
  errno: -4058,
  code: 'ENOENT',
  syscall: 'spawn c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python',
  path: 'c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python',
  spawnargs: [
    '-c',
    'import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");'
  ]
}
14:17:32.804 [error] Unable to determine site packages path for python ~\.pyenv\pyenv-win\shims\python (Unknown)
14:17:32.806 [info] Process Execution: ~\.pyenv\pyenv-win\shims\python ~\.vscode-insiders\extensions\ms-toolsai.jupyter-2023.10.1002931100-win32-x64\pythonFiles\vscode_datascience_helpers\kernel_interrupt_daemon.py --ppid 25740
    > cwd: ~\.vscode-insiders\extensions\ms-toolsai.jupyter-2023.10.1002931100-win32-x64\pythonFiles\vscode_datascience_helpers
14:17:33.696 [info] ipykernel version & path 6.23.2, ~\dev\<username>Mass\stable-diffusion\.venv\lib\site-packages\ipykernel\__init__.py for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
14:17:35.640 [info] End refreshing Kernel Picker (1697717851557)

Coding Language and Runtime Version

Python 3.10 & 3.11

Language Extension Version (if applicable)

No response

Anaconda Version (if applicable)

No response

Running Jupyter locally or remotely?

Local

@melMass melMass added the bug Issue identified by VS Code Team member as probable bug label Oct 19, 2023
@melMass
Copy link
Author

melMass commented Oct 19, 2023

Because I looked at other closed issue before:

  • My env does have ipykernel (6.23.2)
 pip freeze | lines | find jupy
╭────┬─────────────────────────────────╮
 0   jupyter-events==0.6.3           
 1   jupyter-lsp==2.2.0              
 2   jupyter_client==8.2.0           
 3   jupyter_core==5.3.1             
 4   jupyter_server==2.6.0           
 5   jupyter_server_terminals==0.4.4 
 6   jupyterlab==4.0.2               
 7   jupyterlab-pygments==0.2.2      
 8   jupyterlab-widgets==3.0.8       
 9   jupyterlab_server==2.23.0       
 10  ipykernel==6.23.2               
╰────┴─────────────────────────────────╯
  • JupyterLab server ran from the CLI works fine if there is a way to subscribe to it from vscode it would be a good enough solution for my needs
  • Not 100% sure but it doesn't seems to happen if the .venv folder is in the root workspace (double checking that now) Nope but it used to work in older versions of the extension with the exact same project/env

@DonJayamanne
Copy link

Looks like the virtual env is not detected correctly and we use the Python executable for the root pyenv.

Please could you enable logging as follows:

  • Open settings & go into Jupyter->Logging
  • Change the value to verbose
  • Reload VS Code,
  • Attempt to repro the issue & then copy the output from the Jupyter output panel.

@DonJayamanne
Copy link

DonJayamanne commented Oct 19, 2023

ooking at the log there are a few strange stuff like my username is melMass but it resolves to Mass?

Thats just to obfuscate the user name from the logs (so that users can comfortably share their logs in case they prefer not to share user names),
Looks like a bug and we're not removing the entire user name.
This wouldn't cause any issues during runtime of the program

@DonJayamanne DonJayamanne added the info-needed Issue requires more information from poster label Oct 19, 2023
@melMass
Copy link
Author

melMass commented Oct 19, 2023

  • Attempt to repro the issue & then copy the output from the Jupyter output panel.

Thanks, hmm something seems fishy on my end maybe, I have no idea why there is a reference to a scoop version of pyenv (I use scoop but don't manage pyenv or anything python with it) and I double check this path doesn't exist, I'll try to find where it gets picked up.

Versbose output from Jupyter
Visual Studio Code - Insiders (1.84.0-insider, undefined, desktop)
Jupyter Extension Version: 2023.10.1002941100.
Python Extension Version: 2023.19.12921011.
Platform: win32 (x64).
Workspace folder ~\dev\melMass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils, Home = c:\Users\User
16:44:46.561 [info] Telemetry level is off
16:44:46.561 [info] Experiments are disabled, only manually opted experiments are active.
16:44:46.707 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
16:44:46.708 [info] Start refreshing Kernel Picker (1697726686708)
16:44:46.713 [info] Using Pylance
16:44:46.728 [debug] No controller, hence notebook communications cannot be initialized for editor ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb
16:44:46.729 [info] Start refreshing Interpreter Kernel Picker
16:44:46.800 [debug] Get Custom Env Variables, Class name = Ul, completed in 93ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
16:44:46.800 [debug] Jupyter Paths kernels: 
16:44:46.802 [debug] Kernel Spec Root Paths, ~\AppData\Roaming\jupyter\kernels, c:\ProgramData\jupyter\kernels
16:44:46.814 [debug] Search for KernelSpecs in Interpreter ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
16:44:46.815 [debug] Finding Global Python KernelSpecs
16:44:46.838 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\shims\python
16:44:46.839 [debug] Search for KernelSpecs in Interpreter ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe
16:44:46.840 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.10.11\python.exe
16:44:46.841 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.11.2\python.exe
16:44:46.841 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.7.7\python.exe
16:44:46.849 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.7.9\python.exe
16:44:46.849 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.9.10\python.exe
16:44:46.850 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.9.7\python.exe
16:44:46.851 [debug] Full interpreter list is length: 8, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe
16:44:46.853 [debug] Getting activated env variables, Class name = $a (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
16:44:46.853 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "RunPythonCode"
16:44:46.853 [debug] Get Custom Env Variables, Class name = Ul, completed in 0ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "RunPythonCode"
16:44:47.493 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\SHIMS\PYTHON are .jvsc74a57bd067818fccb81b604e58e13b1ccd5c90a1220c108bf62987573a338ccf831dce6d.~\.pyenv\pyenv-win\shims\python.~\.pyenv\pyenv-win\shims\python.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE are .jvsc74a57bd0460aa1b011fe425695db02b5af322aa3b04aaadc8b65cb8dfd724ec885c9385e.~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE are .jvsc74a57bd08a207b22e9c0aea95cad2fc61c853b7738e57bed2caa7b2ffee9ca78a9f83f3d.~\.pyenv\pyenv-win\versions\3.10.11\python.exe.~\.pyenv\pyenv-win\versions\3.10.11\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE are .jvsc74a57bd0e7235c5ef863d4238867e0aefa85ab878a343bf4e3ac53f133e681c998af4cef.~\.pyenv\pyenv-win\versions\3.11.2\python.exe.~\.pyenv\pyenv-win\versions\3.11.2\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE are .jvsc74a57bd0359e797673761f0786a7495cc3ddde1379643c948d3c6db9418f22ac1f2ba8a9.~\.pyenv\pyenv-win\versions\3.7.7\python.exe.~\.pyenv\pyenv-win\versions\3.7.7\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE are .jvsc74a57bd05ac6c692c0d670ddbb7da406cbf067796aa96c466f2f095e0214d09a0613b0fd.~\.pyenv\pyenv-win\versions\3.7.9\python.exe.~\.pyenv\pyenv-win\versions\3.7.9\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE are .jvsc74a57bd08af2cf34f6f608a72c3037de358796d01f987239d8a5111a213aa0cabfd0ca84.~\.pyenv\pyenv-win\versions\3.9.10\python.exe.~\.pyenv\pyenv-win\versions\3.9.10\python.exe.-m#ipykernel_launcher
16:44:47.494 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE are .jvsc74a57bd0edf9cda0bfdbe1341107bd4fd44ad082f031b2904822bc70bdb7fa34cde4a3ef.~\.pyenv\pyenv-win\versions\3.9.7\python.exe.~\.pyenv\pyenv-win\versions\3.9.7\python.exe.-m#ipykernel_launcher
16:44:47.660 [debug] Loading kernelspec from ~\dev\<username>Mass\stable-diffusion\.venv\share\jupyter\kernels\python3\kernel.json for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
16:44:47.820 [debug] Kernel Specs found in interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE are [{"specFile":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\share\\jupyter\\kernels\\python3\\kernel.json","interpreterPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\Scripts\\python.exe","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\share\\jupyter\\kernels\\python3\\kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
16:44:47.821 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763', python for interpreter ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe and spec ~\dev\<username>Mass\stable-diffusion\.venv\share\jupyter\kernels\python3\kernel.json
16:44:47.821 [debug] Kernels for interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE are .jvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.-m#ipykernel_launcher
16:44:48.866 [debug] Conda file returned by Python Extension is conda
16:44:48.963 [debug] Python API env change detected, add => '~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE'
16:44:49.305 [debug] Got env vars with python ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, with env var count 182 in 2452ms. 
    PATH value is ~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:49.305 [debug] Prepend PATH with python bin for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:49.305 [debug] Activated Env Variables for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:49.306 [debug] Getting activated env variables, Class name = $a, completed in 2453ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
16:44:49.313 [info] Process Execution: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe -m pip list
16:44:49.606 [warn] No interpreter for Pylance for Notebook URI "~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb"
16:44:51.463 [debug] Controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher' for view = 'jupyter-notebook' is no longer a valid
16:44:51.463 [debug] Controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive)' for view = 'interactive' is no longer a valid
16:44:51.463 [warn] Disposing old controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher' for view = 'jupyter-notebook'
16:44:51.463 [debug] Disposing controller .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher associated with connection .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher 
16:44:51.464 [warn] Disposing old controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive)' for view = 'interactive'
16:44:51.464 [debug] Disposing controller .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive) associated with connection .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher 
16:44:51.464 [debug] Python API env change detected, remove => '~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE'
16:44:51.467 [error] Failed to get env details from Python API for ~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE without an error
16:44:51.468 [debug] Full interpreter list is length: 8, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe
16:44:51.469 [debug] Interpreter removed ~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE
16:44:51.476 [debug] Python API env change detected, update => '~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE'
16:44:51.490 [debug] Full interpreter list is length: 9, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe, ~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
16:44:51.490 [debug] Refreshed Environments
16:44:51.534 [debug] KernelProvider switched kernel to id = .jvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.-m#ipykernel_launcher
16:44:51.535 [debug] start the kernel, options.disableUI=true for ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb
16:44:51.538 [debug] Initialize notebook communications for editor ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb
16:44:51.538 [debug] Resolving notebook UI Comms (resolve) for ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb
16:44:51.538 [debug] initialize CommonMessageCoordinator
16:44:51.540 [debug] Registering commtarget jupyter.widget
16:44:51.540 [debug] IPyWidgetMessageDispatcher.initialize
16:44:51.540 [debug] Attempting to determine version of IPyWidgets
16:44:51.542 [debug] Controller selection change completed
16:44:51.543 [debug] Waiting for IPyWidgets version
16:44:51.543 [debug] Waiting for IPyWidgets version promise
16:44:51.557 [info] Starting Kernel startUsingPythonInterpreter, .jvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.-m#ipykernel_launcher  (Python Path: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, Venv, .venv, 3.10.11) for '~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb' (disableUI=true)
16:44:51.558 [debug] Creating raw notebook for resource '~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb'
16:44:51.564 [debug] Kernel Launcher. launch, Class name = Fv (started execution), Arg 1: "~\\dev\\<username>Mass\\stable-diffusion\\.venv\\Scripts\\python.exe.c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\Scripts\\python.exe.-m#ipykernel_launcher", Arg 2: 60000, Arg 3: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 4: "~\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\notebooks", Arg 5: ""
16:44:51.592 [debug] Getting activated env variables, Class name = $a (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
16:44:51.592 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "RunPythonCode"
16:44:51.594 [debug] Get Custom Env Variables, Class name = Ul, completed in 2ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "RunPythonCode"
16:44:51.595 [debug] Got env vars with python ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, with env var count 182 in 3ms. 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:51.596 [debug] Prepend PATH with python bin for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:51.596 [debug] Activated Env Variables for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin; and 
    Path value is undefined
16:44:51.596 [debug] Getting activated env variables, Class name = $a, completed in 4ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
16:44:51.608 [info] Process Execution: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)"
16:44:51.726 [debug] Launching kernel in kernelProcess.ts, Class name = Lv (started execution), Arg 1: "~\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\notebooks", Arg 2: ""
16:44:51.736 [debug] Kernel Env Variables for ~\.vscode-insiders\extensions\ms-toolsai.jupyter-2023.10.1002941100-win32-x64\temp\jupyter\kernels\pythonjvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763\kernel.json, PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin;~\dev\Microsoft\vcpkg;~\development\flutter\bin;~\go\bin;~\.nimble\bin;C:\Users\<username>\Library\pnpm;~\.bun\bin;~\.yarn\bin;~\node_modules\.bin;~\.gem\bin;~\.rbenv\bin;~\.rbenv\shims;~\.cargo\bin;
16:44:51.739 [debug] Getting activated env variables, Class name = $a (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "~\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON", Arg 3: undefined
16:44:51.740 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "RunPythonCode"
16:44:51.741 [debug] Get Custom Env Variables, Class name = Ul, completed in 1ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "RunPythonCode"
16:44:51.910 [warn] Failed to get activated env vars for ~\.pyenv\pyenv-win\shims\python in 170ms
16:44:51.914 [debug] Create ProcessService, Class name = _l (started execution), Arg 1: undefined
16:44:51.914 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: undefined, Arg 2: "RunNonPythonCode", Arg 3: undefined
16:44:51.919 [debug] Get Custom Env Variables, Class name = Ul, completed in 5ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunNonPythonCode", Arg 3: undefined
16:44:51.919 [debug] Create ProcessService, Class name = _l, completed in 5ms, has a truthy return value, Arg 1: undefined
16:44:51.922 [info] Process Execution: ~\.pyenv\pyenv-win\shims\python -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");"
16:44:51.923 [error] Jupyter Extension (Error in getExecutablesPath, method:getExecutablesPath): [Error: spawn ~\.pyenv\pyenv-win\shims\python ENOENT
	at ChildProcess._handle.onexit (node:internal/child_process:283:19)
	at onErrorNT (node:internal/child_process:476:16)
	at process.processTicksAndRejections (node:internal/process/task_queues:82:21)] {
  errno: -4058,
  code: 'ENOENT',
  syscall: 'spawn c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python',
  path: 'c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python',
  spawnargs: [
    '-c',
    'import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");'
  ]
}
16:44:51.925 [error] Unable to determine site packages path for python ~\.pyenv\pyenv-win\shims\python (Unknown)
16:44:51.926 [debug] Prepend PATH with python bin for ~\.pyenv\pyenv-win\shims\python, 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\scoop\apps\pdm\2.5.6\venv\lib\site-packages\pdm\pep582 and 
    Path value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\scoop\apps\pdm\2.5.6\venv\lib\site-packages\pdm\pep582
16:44:51.926 [debug] Activated Env Variables for ~\.pyenv\pyenv-win\shims\python, 
    PATH value is ~\.pyenv\pyenv-win\shims;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\scoop\apps\pdm\2.5.6\venv\lib\site-packages\pdm\pep582 and 
    Path value is ~\.pyenv\pyenv-win\shims;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\dev\<username>Mass\stable-diffusion\.venv\Scripts;C:\gtk-build\gtk\x64\release\bin;~\.dot\env\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;C:\\Users\\User\\scoop\\apps\\openssl\\current\\bin;C:\\Users\\User\\scoop\\apps\\mpv\\current;C:\\Users\\User\\scoop\\apps\\gsudo\\current;C:\\Users\\User\\scoop\\apps\\llvm\\current\\bin;C:\\Users\\User\\scoop\\apps\\postgresql\\current\\bin;C:\\Users\\User\\scoop\\apps\\imagemagick\\current;C:\\Users\\User\\go\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\icu-69.1\\usr\\bin;C:\\Users\\User\\scoop\\apps\\swift\\current\\Swift\\runtime-development\\usr\\bin;C:\\Users\\User\\scoop\\apps\\gpg\\current\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\site\\bin;C:\\Users\\User\\scoop\\apps\\perl\\current\\perl\\bin;C:\\Users\\User\\scoop\\apps\\opencv\\current\\x64\\vc14\\bin;C:\\Users\\User\\scoop\\apps\\nvm\\current\\nodejs\\nodejs;C:\\Users\\User\\scoop\\apps\\git\\current\\cmd;C:\\Users\\User\\scoop\\apps\\emscripten\\current;C:\\Users\\User\\.console-ninja\\.bin;C:\\Users\\User\\scoop\\shims;C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin;C:\\Users\\User\\.cargo\\bin;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\User\\.pyenv\\pyenv-win\\bin;C:\\Users\\User\\.pyenv\\pyenv-win\\shims;C:\\Users\\User\\.dotnet\\tools;C:\\Program Files\\JetBrains\\IntelliJ IDEA Community Edition 2022.1.1\\bin;C:\\Users\\User\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\User\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\User\\AppData\\Roaming\\Autodesk\\ApplicationPlugins\\dynamo_3ds_max\\;C:\\Users\\User\\bin;C:\\Users\\User\\.pnpm;c:\\users\\user\\.local\\bin;C:\\Users\\User\\dev\\microsoft\\vcpkg\\;C:\\Users\\User\\AppData\\Local\\Microsoft\\WindowsApps;c:\\users\\user\\appdata\\roaming\\python\\scripts;C:\\Program Files\\NSSM;~\dev\odin-lang\Odin;~\dev\microsoft\vcpkg;~\development/flutter/bin;~/go/bin;~\.nimble\bin;C:/Users/<username>/Library/pnpm;~/.bun/bin;~/.yarn/bin;~\./node_modules/.bin;~/.gem/bin;~/.rbenv/bin;~/.rbenv/shims;~\.cargo\bin;~\scoop\apps\pdm\2.5.6\venv\lib\site-packages\pdm\pep582
16:44:51.927 [debug] Getting activated env variables, Class name = $a, completed in 188ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/notebooks/audio.ipynb", Arg 2: "~\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON", Arg 3: undefined
16:44:51.930 [info] Process Execution: ~\.pyenv\pyenv-win\shims\python ~\.vscode-insiders\extensions\ms-toolsai.jupyter-2023.10.1002941100-win32-x64\pythonFiles\vscode_datascience_helpers\kernel_interrupt_daemon.py --ppid 40880
    > cwd: ~\.vscode-insiders\extensions\ms-toolsai.jupyter-2023.10.1002941100-win32-x64\pythonFiles\vscode_datascience_helpers
16:44:52.660 [info] ipykernel version & path 6.23.2, ~\dev\<username>Mass\stable-diffusion\.venv\lib\site-packages\ipykernel\__init__.py for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
16:44:53.115 [info] End refreshing Kernel Picker (1697726686708)
16:44:57.035 [info] Handle Execution of Cells 1 for ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb
16:44:57.037 [debug] start the kernel, options.disableUI=false for ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.16:50:38.047 [debug] notebook communications already initialized for editor ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb

@DonJayamanne
Copy link

Full interpreter list is length: 8, .PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:.pyenv\pyenv-win\shims\python, ~\DEV<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS.VENV\SCRIPTS\PYTHON.EXE

It seems you might not be selecting the right kernel from the list
Ples can you try selecitng the kernel with the name .ven or the like.
I think there will be such an item in the Python environment list.
if that doesn't work, please share a screenshot of the list of environments from the kernel picker.

@melMass
Copy link
Author

melMass commented Oct 19, 2023

I should have waited but between the time I logged the issue and the time I posted my last log there was an insiders update, before it would detect my python interpreter from the settings now it doesn't anymore (the .venv is a few levels up from the workspace root, it seems to only detect my pyenv ones and the ones in child subdirectories)

image

@melMass
Copy link
Author

melMass commented Oct 19, 2023

Maybe this is more useful:
jupyter_please

@DonJayamanne
Copy link

Thanks for the screenshots, but from what I can see the same environments are displayed aren't they
Please can you share a sccreenshot of whats in Jupyter Kernels and whats in the Python interpreter list.
Both seem to be the same, apart from the fact that they are not sorted the same way.

@melMass
Copy link
Author

melMass commented Oct 19, 2023

Both seem to be the same, apart from the fact that they are not sorted the same way.

Yep this is where there is the issue for me :
The first is the one from settings.json it appears only for the python interpreters (global):
image

Not for the jupyter kernels ones:
image

And before the update it was listing it but entering a never ending loop on cell run

@DonJayamanne
Copy link

ms-toolsai-jupyter-insiders.vsix (4).zip

Please can you

  • Download this zip file
  • Extract it
  • Open VS Code and select the command Extensions: Install from VSIX
  • Reload vscode when prompted
  • Replicate the issue and share the logs again
  • This time the logs might be large, you might have to zip the contentgs into a text file.

@melMass
Copy link
Author

melMass commented Oct 19, 2023

Thanks for the help, here it is:

Also available as a file (see attachment)
Visual Studio Code - Insiders (1.84.0-insider, undefined, desktop)
Jupyter Extension Version: 2023.10.100.
Python Extension Version: 2023.19.12921011.
Platform: win32 (x64).
Workspace folder ~\dev\melMass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils, Home = c:\Users\User
19:14:18.298 [info] Telemetry level is off
19:14:18.298 [info] Experiments are disabled, only manually opted experiments are active.
19:14:18.408 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
19:14:18.408 [info] Start refreshing Kernel Picker (1697735658408)
19:14:18.411 [info] Using Pylance
19:14:18.490 [debug] Get Custom Env Variables, Class name = Ul, completed in 83ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
19:14:18.490 [debug] Jupyter Paths kernels: 
19:14:18.490 [debug] Kernel Spec Root Paths, ~\AppData\Roaming\jupyter\kernels, c:\ProgramData\jupyter\kernels
19:14:18.506 [debug] Search for KernelSpecs in Interpreter ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
19:14:18.507 [debug] Finding Global Python KernelSpecs
19:14:18.508 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\shims\python
19:14:18.508 [debug] Search for KernelSpecs in Interpreter ~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe
19:14:18.509 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.10.11\python.exe
19:14:18.509 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.11.2\python.exe
19:14:18.509 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.7.7\python.exe
19:14:18.510 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.7.9\python.exe
19:14:18.510 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.9.10\python.exe
19:14:18.510 [debug] Search for KernelSpecs in Interpreter ~\.pyenv\pyenv-win\versions\3.9.7\python.exe
19:14:18.511 [debug] Full interpreter list is length: 8, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe
19:14:18.513 [debug] Getting activated env variables, Class name = $a (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
19:14:18.513 [debug] Get Custom Env Variables, Class name = Ul (started execution), Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "RunPythonCode"
19:14:18.513 [debug] Get Custom Env Variables, Class name = Ul, completed in 0ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "RunPythonCode"
19:14:18.536 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\SHIMS\PYTHON are .jvsc74a57bd067818fccb81b604e58e13b1ccd5c90a1220c108bf62987573a338ccf831dce6d.~\.pyenv\pyenv-win\shims\python.~\.pyenv\pyenv-win\shims\python.-m#ipykernel_launcher
19:14:18.536 [debug] Kernels for interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE are .jvsc74a57bd0460aa1b011fe425695db02b5af322aa3b04aaadc8b65cb8dfd724ec885c9385e.~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe.-m#ipykernel_launcher
19:14:18.536 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE are .jvsc74a57bd08a207b22e9c0aea95cad2fc61c853b7738e57bed2caa7b2ffee9ca78a9f83f3d.~\.pyenv\pyenv-win\versions\3.10.11\python.exe.~\.pyenv\pyenv-win\versions\3.10.11\python.exe.-m#ipykernel_launcher
19:14:18.536 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE are .jvsc74a57bd0e7235c5ef863d4238867e0aefa85ab878a343bf4e3ac53f133e681c998af4cef.~\.pyenv\pyenv-win\versions\3.11.2\python.exe.~\.pyenv\pyenv-win\versions\3.11.2\python.exe.-m#ipykernel_launcher
19:14:18.536 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE are .jvsc74a57bd0359e797673761f0786a7495cc3ddde1379643c948d3c6db9418f22ac1f2ba8a9.~\.pyenv\pyenv-win\versions\3.7.7\python.exe.~\.pyenv\pyenv-win\versions\3.7.7\python.exe.-m#ipykernel_launcher
19:14:18.536 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE are .jvsc74a57bd05ac6c692c0d670ddbb7da406cbf067796aa96c466f2f095e0214d09a0613b0fd.~\.pyenv\pyenv-win\versions\3.7.9\python.exe.~\.pyenv\pyenv-win\versions\3.7.9\python.exe.-m#ipykernel_launcher
19:14:18.537 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE are .jvsc74a57bd08af2cf34f6f608a72c3037de358796d01f987239d8a5111a213aa0cabfd0ca84.~\.pyenv\pyenv-win\versions\3.9.10\python.exe.~\.pyenv\pyenv-win\versions\3.9.10\python.exe.-m#ipykernel_launcher
19:14:18.537 [debug] Kernels for interpreter ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE are .jvsc74a57bd0edf9cda0bfdbe1341107bd4fd44ad082f031b2904822bc70bdb7fa34cde4a3ef.~\.pyenv\pyenv-win\versions\3.9.7\python.exe.~\.pyenv\pyenv-win\versions\3.9.7\python.exe.-m#ipykernel_launcher
19:14:18.545 [debug] Loading kernelspec from ~\dev\<username>Mass\stable-diffusion\.venv\share\jupyter\kernels\python3\kernel.json for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe
19:14:18.546 [debug] Kernel Specs found in interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE are [{"specFile":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\share\\jupyter\\kernels\\python3\\kernel.json","interpreterPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\Scripts\\python.exe","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\.venv\\share\\jupyter\\kernels\\python3\\kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
19:14:18.546 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763', python for interpreter ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe and spec ~\dev\<username>Mass\stable-diffusion\.venv\share\jupyter\kernels\python3\kernel.json
19:14:18.546 [debug] Kernels for interpreter ~\DEV\<username>MASS\STABLE-DIFFUSION\.VENV\SCRIPTS\PYTHON.EXE are .jvsc74a57bd05f9bb58c2e37b4bac998bcf4c3bddc26c85b303cd72c12df08083cd84c1f1763.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe.-m#ipykernel_launcher
19:14:19.322 [debug] Conda file returned by Python Extension is conda
19:14:19.455 [debug] Got env vars with python ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, with env var count 151 in 942ms. 
    PATH value is ~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin; and 
    Path value is undefined
19:14:19.455 [debug] Prepend PATH with python bin for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin; and 
    Path value is undefined
19:14:19.455 [debug] Activated Env Variables for ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe, 
    PATH value is ~\dev\<username>Mass\stable-diffusion\.venv\Scripts;~\.pyenv\pyenv-win\versions\3.10.11;~\.pyenv\pyenv-win\versions\3.10.11\Scripts;~\AppData\Roaming\Python\Python310\Scripts;~\Desktop\gits\AI\diffusers\stable-diffusion-webui\.venv\Scripts;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Fing\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin;C:\Program Files\dotnet\;C:\Program Files\Microsoft VS Code Insiders\bin;C:\Program Files (x86)\Tailscale IPN;C:\Program Files\PowerShell\7\;~\scoop\apps\haxe\current;~\scoop\apps\neko\current;~\go\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\.nimble\bin;~\scoop\apps\mingw-winlibs\current\bin;~\.console-ninja\.bin;~\scoop\shims;~\scoop\apps\openssl\current\bin;~\scoop\apps\mpv\current;~\scoop\apps\gsudo\current;~\scoop\apps\llvm\current\bin;~\scoop\apps\postgresql\current\bin;~\scoop\apps\imagemagick\current;~\go\bin;~\scoop\apps\swift\current\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;~\scoop\apps\swift\current\Swift\icu-69.1\usr\bin;~\scoop\apps\swift\current\Swift\runtime-development\usr\bin;~\scoop\apps\gpg\current\bin;~\scoop\apps\perl\current\perl\site\bin;~\scoop\apps\perl\current\perl\bin;~\scoop\apps\opencv\current\x64\vc14\bin;~\scoop\apps\nvm\current\nodejs\nodejs;~\scoop\apps\git\current\cmd;~\scoop\apps\emscripten\current;~\.console-ninja\.bin;~\scoop\shims;C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin;~\.cargo\bin;~\AppData\Local\Microsoft\WindowsApps;~\.pyenv\pyenv-win\bin;~\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.1.1\bin;~\AppData\Roaming\nvm;C:\Program Files\nodejs;~\AppData\Local\Programs\oh-my-posh\bin;~\AppData\Roaming\Autodesk\ApplicationPlugins\dynamo_3ds_max\;~\bin;~\.pnpm;~\.local\bin;~\dev\Microsoft\vcpkg\;~\AppData\Local\Microsoft\WindowsApps;~\AppData\Roaming\Python\Scripts;C:\Program Files\NSSM;~\dev\odin-lang\Odin; and 
    Path value is undefined
19:14:19.456 [debug] Getting activated env variables, Class name = $a, completed in 943ms, has a truthy return value, Arg 1: "/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils", Arg 2: "~\\DEV\\<username>MASS\\STABLE-DIFFUSION\\.VENV\\SCRIPTS\\PYTHON.EXE", Arg 3: undefined
19:14:19.463 [info] Process Execution: ~\dev\<username>Mass\stable-diffusion\.venv\Scripts\python.exe -m pip list
19:14:19.512 [info] End refreshing Kernel Picker (1697735658408)
19:14:19.926 [warn] No interpreter for Pylance for Notebook URI "~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\notebooks\audio.ipynb"
19:14:33.324 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:33.327 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:33.328 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:33.328 [debug] Current items {}
19:14:33.328 [debug] Current items in quickPickItems [{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1},{"label":".venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}}]
19:14:33.329 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:33.329 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:33.330 [debug] Current items in Quick Pick []
19:14:33.330 [debug] Current items in Quick Pick [{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":".venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}}]
19:14:33.331 [debug] Current items in Quick Pick after rebuild [{"label":"$(add) Create Python Environment"},{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1},{"label":".venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}}]
19:14:33.368 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}]
19:14:33.369 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}]
19:14:33.369 [debug] Current items {}
19:14:33.369 [debug] Current items in quickPickItems [{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}}]
19:14:33.370 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}]
19:14:33.371 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}]
19:14:33.371 [debug] Current items in Quick Pick [{"label":"$(add) Create Python Environment"},{"label":"Recommended","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}},{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1}]
19:14:33.371 [debug] Current items in Quick Pick [{"label":"Python 3.10.8","description":"~\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}}]
19:14:33.371 [debug] Current items in Quick Pick after rebuild [{"label":"$(add) Create Python Environment"},{"label":"Recommended","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}},{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"Python 3.10.8","description":"~\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1}]
19:14:33.372 [debug] Python API env change detected, add => '~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE'
19:14:33.372 [info] Start refreshing Kernel Picker (1697735673372)
19:14:35.437 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:35.438 [debug] Current items {}
19:14:35.438 [debug] Current items in quickPickItems [{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"Python 3.10.8","description":"~\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\scoop\\apps\\pyenv\\current\\pyenv-win\\versions\\3.10.8\\python.exe","id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/scoop/apps/pyenv/current/pyenv-win/versions/3.10.8/python.exe","scheme":"file"},"bitness":"64-bit"},"version":{"major":3,"minor":10,"micro":8},"tools":[]},"id":"C:\\USERS\\USER\\SCOOP\\APPS\\PYENV\\CURRENT\\PYENV-WIN\\VERSIONS\\3.10.8\\PYTHON.EXE"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","_sep":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}}]
19:14:35.439 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:35.439 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:35.440 [debug] Current items in Quick Pick [{"label":"$(add) Create Python Environment"},{"label":"Recommended","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}},{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1}]
19:14:35.440 [debug] Current items in Quick Pick []
19:14:35.440 [debug] Current items in Quick Pick after rebuild [{"label":"$(add) Create Python Environment"},{"label":"Recommended","kind":-1},{"label":"$(star-full) .venv (Python 3.11.2)","description":"apps\\.venv\\Scripts\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","_sep":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"}},{"label":"Global Env","sortKey":"Global Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\shims\\python","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"}},{"label":"PyEnv Env","sortKey":"PyEnv Env","kind":-1},{"label":"Python 3.10.11","description":"~\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"}},{"label":"Python 3.11.2","description":"~\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"}},{"label":"Python 3.7.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"}},{"label":"Python 3.7.9","description":"~\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"}},{"label":"Python 3.9.10","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"}},{"label":"Python 3.9.7","description":"~\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","tooltip":"","item":{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}},{"label":"Virtual Env","sortKey":"Virtual Env","kind":-1}]
19:14:35.440 [debug] Controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher' for view = 'jupyter-notebook' is no longer a valid
19:14:35.440 [debug] Controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive)' for view = 'interactive' is no longer a valid
19:14:35.440 [warn] Disposing old controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher' for view = 'jupyter-notebook'
19:14:35.440 [debug] Disposing controller .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher associated with connection .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher 
19:14:35.440 [warn] Disposing old controller startUsingPythonInterpreter:'.jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive)' for view = 'interactive'
19:14:35.440 [debug] Disposing controller .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher (Interactive) associated with connection .jvsc74a57bd085c2d2d924b368cccf76ff326661ba2eecfef7826049ffef3c501ed368baeb50.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.~\scoop\apps\pyenv\current\pyenv-win\versions\3.10.8\python.exe.-m#ipykernel_launcher 
19:14:35.440 [debug] Python API env change detected, remove => '~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE'
19:14:35.443 [error] Failed to get env details from Python API for ~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE without an error
19:14:35.444 [debug] Full interpreter list is length: 8, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe
19:14:35.444 [debug] Interpreter removed ~\SCOOP\APPS\PYENV\CURRENT\PYENV-WIN\VERSIONS\3.10.8\PYTHON.EXE
19:14:35.447 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]
19:14:36.446 [info] End refreshing Kernel Picker (1697735673372)

jupyter_vscode.log

@melMass
Copy link
Author

melMass commented Oct 19, 2023

For now I'm running a server and connecting to it, it works perfectly fine for my needs

@DonJayamanne
Copy link

@melMass thanks for sharing the logs.
Based on the logs, the Python extension is not providing the Python environment you have configured.
@karrtikr the Python extension API does not return the Python environment configured by the user in their settings.
If you check the screenshot, the environmetn python.defaultInterpreterPath is set by the user, however that environment is not returned in the list of environments to us.

This is all we have

19:14:18.511 [debug] Full interpreter list is length: 8, ~\.PYENV\PYENV-WIN\SHIMS\PYTHON::Unknown:~\.pyenv\pyenv-win\shims\python, ~\DEV\<username>MASS\STABLE-DIFFUSION\COMFYUI.GIT\CUSTOM_NODES\COMFY_MTB_UTILS\APPS\.VENV\SCRIPTS\PYTHON.EXE:.venv:Venv:~\dev\<username>Mass\stable-diffusion\ComfyUI.git\custom_nodes\comfy_mtb_utils\apps\.venv\Scripts\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.10.11\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.10.11\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.11.2\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.11.2\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.7\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.7.9\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.7.9\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.10\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.10\python.exe, ~\.PYENV\PYENV-WIN\VERSIONS\3.9.7\PYTHON.EXE::Pyenv:~\.pyenv\pyenv-win\versions\3.9.7\python.exe

19:14:35.437 [debug] Known Environments in PythonEnvironmetnQuidckPickProvider [{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\shims\\python","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/shims/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":[]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\SHIMS\\PYTHON"},{"internal":{"path":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv\\Scripts\\python.exe","id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv/Scripts/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils\\apps\\.venv"},"environment":{"type":"VirtualEnvironment","name":".venv","folderUri":{"$mid":1,"path":"/C:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils/apps/.venv","scheme":"file"},"workspaceFolder":{"uri":{"$mid":1,"fsPath":"c:\\Users\\User\\dev\\<username>Mass\\stable-diffusion\\ComfyUI.git\\custom_nodes\\comfy_mtb_utils","_sep":1,"external":"file:///c%3A/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","path":"/c:/Users/User/dev/<username>Mass/stable-diffusion/ComfyUI.git/custom_nodes/comfy_mtb_utils","scheme":"file"},"name":"comfy_mtb_utils","index":0}},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Venv"]},"id":"C:\\USERS\\USER\\DEV\\<username>MASS\\STABLE-DIFFUSION\\COMFYUI.GIT\\CUSTOM_NODES\\COMFY_MTB_UTILS\\APPS\\.VENV\\SCRIPTS\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.10.11/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.10.11"},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.10.11\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.11.2/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.11.2"},"version":{"major":3,"minor":11,"micro":2,"release":{"level":"final","serial":0},"sysVersion":"3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.11.2\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.7"},"version":{"major":3,"minor":7,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.7\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.7.9/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.7.9"},"version":{"major":3,"minor":7,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.7.9\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.10/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.10"},"version":{"major":3,"minor":9,"micro":10,"release":{"level":"final","serial":0},"sysVersion":"3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.10\\PYTHON.EXE"},{"internal":{"path":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7\\python.exe","id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE","executable":{"uri":{"$mid":1,"path":"/C:/Users/User/.pyenv/pyenv-win/versions/3.9.7/python.exe","scheme":"file"},"bitness":"64-bit","sysPrefix":"C:\\Users\\User\\.pyenv\\pyenv-win\\versions\\3.9.7"},"version":{"major":3,"minor":9,"micro":7,"release":{"level":"final","serial":0},"sysVersion":"3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)]"},"tools":["Pyenv"]},"id":"C:\\USERS\\USER\\.PYENV\\PYENV-WIN\\VERSIONS\\3.9.7\\PYTHON.EXE"}]

@DonJayamanne
Copy link

@melMass I'm transferring this issue to the Python extension, hopefully they can help address this issue.

@DonJayamanne DonJayamanne changed the title Jupyter interpreter resolution logic? Python environment defined in python.defaultInterpreterPath not returned in the Python API of known environments Oct 19, 2023
@DonJayamanne DonJayamanne transferred this issue from microsoft/vscode-jupyter Oct 19, 2023
@github-actions github-actions bot added the triage-needed Needs assignment to the proper sub-team label Oct 19, 2023
@karrtikr karrtikr removed the info-needed Issue requires more information from poster label Oct 20, 2023
@karrtikr
Copy link

Please provide the Python debug logs which can help diagnose the issue:

  • Run Developer: Set log level command
  • Select Trace
  • Run Developer: Reload Window command
  • Provide the output:
Output for Python in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Python)

XXX

@github-actions github-actions bot added the info-needed Issue requires more information from poster label Oct 21, 2023
@karrtikr
Copy link

@melMass Is "python.defaultInterpreterPath" defined at workspace level (.vscode/settings.json) or in User settings?

@melMass
Copy link
Author

melMass commented Oct 30, 2023

@melMass Is "python.defaultInterpreterPath" defined at workspace level (.vscode/settings.json) or in User settings?

Workspace level in all these cases, I will provide the debug asked in your previous message tomorrow

@github-actions github-actions bot removed the info-needed Issue requires more information from poster label Oct 30, 2023
@karrtikr karrtikr added this to the November 2023 milestone Oct 30, 2023
@karrtikr karrtikr added area-environments Features relating to handling interpreter environments needs PR Ready to be worked on and removed triage-needed Needs assignment to the proper sub-team labels Oct 30, 2023
karrtikr pushed a commit that referenced this issue Oct 31, 2023
…is returned via discovery API (#22389)

Closes #22268

Even when it is not the active interpreter for any workspace, it's still
a known environment which users could consider selecting.
@github-actions github-actions bot removed the needs PR Ready to be worked on label Oct 31, 2023
@karrtikr
Copy link

Fix should be out in the pre-release version of the extension in a day, use the following to try it out:

image

Use Python: Clear cache and reload window command after installation.

@karrtikr karrtikr added the author-verification-requested Issues potentially verifiable by issue author label Oct 31, 2023
@karrtikr
Copy link

Let me know if it works and we can close it off.

@melMass
Copy link
Author

melMass commented Oct 31, 2023

Let me know if it works and we can close it off.

Thanks, it works and even pick it up by default now if set in the workspace settings

@karrtikr
Copy link

Awesome 🙂

@karrtikr karrtikr added the verified Verification succeeded label Oct 31, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 1, 2023
wesm pushed a commit to posit-dev/positron that referenced this issue Mar 28, 2024
… 2023.20

Merge pull request #244 from posit-dev/merge/upstream-2023.20

Merge upstream vscode-python 2023.20
--------------------
Commit message for posit-dev/positron-python@182a5a1b5c8ca577bea4b303224a2a92a78e8ce9:

Put back gulp installation path instead of nox

--------------------
Commit message for posit-dev/positron-python@bd64148cbb024a183cea2cdacd98c2d7cbf0008a:

Merge upstream 2023.20

--------------------
Commit message for microsoft/vscode-python@32ea534f7144fb1c9bd7502e91451e69f2fcd218:

remove new line chars from error text messages in testing rewrite (microsoft/vscode-python#22402)

fixes https://github.com/microsoft/vscode-python/issues/21512 where 2
extra new lines were seen at the end of an error message popup. Removing
these will restrict stop this from occurring.
--------------------
Commit message for microsoft/vscode-python@ff604ca9988420aefa4f66c1681e3d3374c5e03c:

Add cwd to error logs (microsoft/vscode-python#22387)

closes https://github.com/microsoft/vscode-python/issues/22359
--------------------
Commit message for microsoft/vscode-python@78052bd76e9922a983accd35a84f16c6d1d53f22:

Refactor get_node_path function to handle fspath greedy access  (microsoft/vscode-python#22384)

closes https://github.com/microsoft/vscode-python/issues/20830

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@491c2c8af29916136e0b6540b5d934bf448a51e3:

Bump typing-extensions from 4.7.1 to 4.8.0 (microsoft/vscode-python#22015)

Bumps [typing-extensions](https://github.com/python/typing_extensions)
from 4.7.1 to 4.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/python/typing_extensions/releases">typing-extensions's
releases</a>.</em></p>
<blockquote>
<h2>4.8.0</h2>
<p>Changes since 4.7.1:</p>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
<p>No changes since 4.8.0rc1.</p>
<h2>4.8.0rc1</h2>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/typing_extensions/blob/main/CHANGELOG.md">typing-extensions's
changelog</a>.</em></p>
<blockquote>
<h1>Release 4.8.0 (September 17, 2023)</h1>
<p>No changes since 4.8.0rc1.</p>
<h1>Release 4.8.0rc1 (September 7, 2023)</h1>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/typing_extensions/commit/c17c499b865585458bc334a1f895ebaedd2ab854"><code>c17c499</code></a>
Prepare release 4.8.0 (<a
href="https://redirect.github.com/python/typing_extensions/issues/283">#283</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/df9e322f2d9cb66d936fbfeac524b5989b78cfd5"><code>df9e322</code></a>
Run tests on py312 for more third-party projects (<a
href="https://redirect.github.com/python/typing_extensions/issues/281">#281</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/7e294992dfe3070b3ca228555fa3887001ceaab2"><code>7e29499</code></a>
Release 4.8.0rc1 (<a
href="https://redirect.github.com/python/typing_extensions/issues/280">#280</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/ca2a739574fb259f156faba005aaa802e6f19faa"><code>ca2a739</code></a>
Add Doc from PEP 727: <a
href="https://peps.python.org/pep-0727/">https://peps.python.org/pep-0727/</a>
(<a
href="https://redirect.github.com/python/typing_extensions/issues/277">#277</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/13c9484f10f5f4b3ac995c49c06cef42d847723c"><code>13c9484</code></a>
Fix ParamSpec ellipsis default for &lt;3.10 (<a
href="https://redirect.github.com/python/typing_extensions/issues/279">#279</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/4705e747b8380ce466d81b132134bd4ed399eb45"><code>4705e74</code></a>
Improve documentation (<a
href="https://redirect.github.com/python/typing_extensions/issues/278">#278</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/99fa708df2af1ab5ecde47968d71dc5b0447fc5d"><code>99fa708</code></a>
Backport CPython PR 107584 (<a
href="https://redirect.github.com/python/typing_extensions/issues/275">#275</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/688fbd2545944c9c36a0d08084e7c92642a81751"><code>688fbd2</code></a>
Revert &quot;Skip running <code>cattrs</code> tests on PyPy (<a
href="https://redirect.github.com/python/typing_extensions/issues/272">#272</a>)&quot;
(<a
href="https://redirect.github.com/python/typing_extensions/issues/273">#273</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/8dfa0a5dc31b298252d001304b9107be76e4de4c"><code>8dfa0a5</code></a>
Skip running <code>cattrs</code> tests on PyPy (<a
href="https://redirect.github.com/python/typing_extensions/issues/272">#272</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/7bb3f3fca39d477b2bb04f64ff5ea2cc14383e51"><code>7bb3f3f</code></a>
Fix third-party workflow (<a
href="https://redirect.github.com/python/typing_extensions/issues/269">#269</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/typing_extensions/compare/4.7.1...4.8.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typing-extensions&package-manager=pip&previous-version=4.7.1&new-version=4.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@473de33f84fc649f99b1ae4692ecf0653f5d2d8c:

Ensure Python environment defined in `python.defaultInterpreterPath` is returned via discovery API (microsoft/vscode-python#22389)

Closes https://github.com/microsoft/vscode-python/issues/22268

Even when it is not the active interpreter for any workspace, it's still
a known environment which users could consider selecting.
--------------------
Commit message for microsoft/vscode-python@7aefb217ce836d865bdc170c8ef3427549aeac17:

Remove unused packages from `package.json` (microsoft/vscode-python#22386)

closes: https://github.com/microsoft/vscode-python/issues/16840
--------------------
Commit message for microsoft/vscode-python@b65ea3baa48c7ebd2af8e16c7eaf8a33f8d9bd87:

Use nox to install packages (microsoft/vscode-python#22381)


--------------------
Commit message for microsoft/vscode-python@a7262b8d9071c34ccd0dffb4d0fad48092411b31:

Do not prefer Microsoft store interpreter over other global interpreters when auto-selecting (microsoft/vscode-python#22380)

Closes https://github.com/microsoft/vscode-python/issues/22364

Do not compare two global interpreters using their kinds.
--------------------
Commit message for microsoft/vscode-python@b4f06c9e71c8e066d6df3dd787c7880439c4e41b:

Use python test runner for extension python tests (microsoft/vscode-python#22385)

closes https://github.com/microsoft/vscode-python/issues/9051
--------------------
Commit message for microsoft/vscode-python@ed6f4601b21013c1c0d750c751e935439136c44e:

Remove deprecated settings (microsoft/vscode-python#22377)


--------------------
Commit message for microsoft/vscode-python@6d2ab8e063bf3155ca56f782bb43fae84f15c9e0:

Update main version to next pre-release (microsoft/vscode-python#22379)


--------------------
Commit message for microsoft/vscode-python@2ea45befd3a8b5aacf8c92505e9e039f9d13871b:

Update version for release candidate (microsoft/vscode-python#22378)


--------------------
Commit message for microsoft/vscode-python@183a52922661a1d931858c81c6643227ec8ffc86:

allow -v, -f, -q, --local in unittest args (microsoft/vscode-python#22357)

fixes https://github.com/microsoft/vscode-python/issues/22343
--------------------
Commit message for microsoft/vscode-python@93bf5cc2dd89ea98f70c1f85a8a32989e4e635af:

Handle localized shells when powershell execution is disabled (microsoft/vscode-python#22360)

Closes https://github.com/microsoft/vscode-python/issues/22352
--------------------
Commit message for microsoft/vscode-python@56a88b8b885227d04f07eeda47ee7332acaf9fc4:

Trim ends before add lines to logs from create env output (microsoft/vscode-python#22358)

closes https://github.com/microsoft/vscode-python/issues/22321
--------------------
Commit message for microsoft/vscode-python@71a451cb4f7cb6a2e0b192ad0ed4d1ec202a001c:

Save env vars at first pytest hook to ensure theyre unedited (microsoft/vscode-python#22344)

fixes https://github.com/microsoft/vscode-python/issues/22192.

Now, all environment variables are accessed during the
pytest_load_initial_conftests hook and then saved as global variables in
the plugin. This ensures the port and uuid will still be saved even if a
user safely or unsafely clears their environment variables during
testing.

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@c2dec146b9fe53af641ed217c4a567735d4d2d32:

Update warning for the deprecated settings in python (microsoft/vscode-python#22345)

close https://github.com/microsoft/vscode-python/issues/22272
--------------------
Commit message for microsoft/vscode-python@fe229588a6626800e26299aa0c27d0be03698016:

Fix powershell core activation if executing scripts is not supported (microsoft/vscode-python#22350)

Closes https://github.com/microsoft/vscode-python/issues/22252
--------------------
Commit message for microsoft/vscode-python@26b6255420750510bbe50d926835e7064469e920:

fix small logging issues for testing deprecation & duplicate log (microsoft/vscode-python#22349)

fixes https://github.com/microsoft/vscode-python/issues/22327
--------------------
Commit message for microsoft/vscode-python@e6046877f9679641dea61484e6ba4ea62b454591:

Correct condition when logging whether shell integration is active (microsoft/vscode-python#22347)

Introduced by https://github.com/microsoft/vscode-python/pull/22346
--------------------
Commit message for microsoft/vscode-python@b46e1a6ba3c1e6ecb7e847ebbf190f5217df385b:

Log whether shell integration is active (microsoft/vscode-python#22346)

For microsoft/vscode-python#20950
--------------------
Commit message for microsoft/vscode-python@bcb10251f3479cf3dd89b1f79a96bb1cbdfcbd13:

Bump actions/setup-node from 3 to 4 in /.github/actions/build-vsix (microsoft/vscode-python#22296)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@c9944e7b5a05c81992c9c936c1588327cdaf8739:

Bump actions/setup-node from 3 to 4 in /.github/actions/lint (microsoft/vscode-python#22297)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@fa0d02b8358efb02f12fd24bc2560ec9926c77ce:

Bump actions/setup-node from 3 to 4 (microsoft/vscode-python#22298)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@10327096932620304a49db6d9742bac676c68b04:

Log commands when using raw process APIs directly (microsoft/vscode-python#22326)


--------------------
Commit message for microsoft/vscode-python@c3afea5984b3dc41b1b3bf2ce04142baaf381029:

Update linter and formatter warning notifications (microsoft/vscode-python#22292)

closes https://github.com/microsoft/vscode-python/issues/22272

---------

Co-authored-by: Luciana Abud <[email protected]>
--------------------
Commit message for microsoft/vscode-python@3c88f27697f4a4b1251146b27b34c56c454ff9c7:

Improve notification texts for terminal activation (microsoft/vscode-python#22323)

Closes https://github.com/microsoft/vscode-python/issues/22316
--------------------
Commit message for microsoft/vscode-python@9e07503d11442bfafb84108d0f0e339eb29c040f:

Use taskkill to kill processes on Windows (microsoft/vscode-python#22286)

For https://github.com/microsoft/vscode-python/issues/22285
--------------------
Commit message for microsoft/vscode-python@daab11d7bfdda996325a7b0ca691c84e7d0fea5e:

Only show terminal notification for basic terminals created using '+' icon (microsoft/vscode-python#22275)


--------------------
Commit message for microsoft/vscode-python@d75874110cbd53bae8a2e2b006814ad1fd21331a:

Add telemetry for deactivate prompt (microsoft/vscode-python#22274)


--------------------
Commit message for microsoft/vscode-python@f57be20d7af6c623774cd148f07ed77c31607ee7:

Support powershell activation even if Powershell execution is disabled on the system (microsoft/vscode-python#22273)

Closes https://github.com/microsoft/vscode-python/issues/22252

Error out if stderr is related to Powershell execution being disabled on
system, even though environment variables are returned in this case,
we've observed they're not valid in this case.
--------------------
Commit message for microsoft/vscode-python@802cf0c136fa30d5a4e69b6cee60e20fb650636d:

Reveal selection after editing deactivate script (microsoft/vscode-python#22271)


--------------------
Commit message for microsoft/vscode-python@63337522aa7bf207b1028323262693d1961a33a1:

add envFile's pythonpath before running tests (microsoft/vscode-python#22269)

fixes https://github.com/microsoft/vscode-python/issues/22231

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@043881397910818cf43b94b85fb3692a4735a14b:

Guide users to install workaround when deactivate command is run (microsoft/vscode-python#22223)


--------------------
Commit message for microsoft/vscode-python@a55484d3c3ccadfc5144c5aa48bdefcb803a1f97:

Fix for stack overflow on dispose (microsoft/vscode-python#22263)

Closes https://github.com/microsoft/vscode-python/issues/22261
--------------------
Commit message for microsoft/vscode-python@5d7eb6546b2c1e03c9c321410b79fed32f859624:

Remove linting support (microsoft/vscode-python#22266)


--------------------
Commit message for microsoft/vscode-python@c82702e584c01c9891007d792e55d0b48e8ea38a:

Add extra logging to PythonTestServer data received before parsed as json (microsoft/vscode-python#22265)

gives additional insight into cases where the data returned to the
extension occurs but tests are still not populating the UI.
--------------------
Commit message for microsoft/vscode-python@0ffce1999c5c611668c0dcc00eab6397a9f1f137:

Bump microvenv from 2023.3.post1 to 2023.5 (microsoft/vscode-python#22259)

Bumps [microvenv](https://github.com/brettcannon/microvenv) from
2023.3.post1 to 2023.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/brettcannon/microvenv/releases">microvenv's
releases</a>.</em></p>
<blockquote>
<h2>2023.5</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>⚠️ Breaking Changes</h3>
<ul>
<li>Drop Python 3.7 by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/58">brettcannon/microvenv#58</a></li>
</ul>
<h3>🎉 New Features</h3>
<ul>
<li>Get mypy passing under Windows by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/58">brettcannon/microvenv#58</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.4...v2023.5">https://github.com/brettcannon/microvenv/compare/v2023.4...v2023.5</a></p>
<h2>2023.4</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>🪲 Bug Fixes</h3>
<ul>
<li>Prevent <code>__main__.py</code> from attempting to execute on
Windows. by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/57">brettcannon/microvenv#57</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.4">https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7cdcf908438fd1e8b2370624ec80a9ee44a597ec"><code>7cdcf90</code></a>
Get mypy passing under Windows (<a
href="https://redirect.github.com/brettcannon/microvenv/issues/58">#58</a>)</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/d32ca9dc1be5e029d326a240eda5c8137b64009d"><code>d32ca9d</code></a>
Fix <code>.github/workflows/docs.yml</code> syntax</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/ee3b599b2e15e0c409641ad4c8313c9a28f654d9"><code>ee3b599</code></a>
Prevent <code>__main__.py</code> from attempting to execute on Windows.
(<a
href="https://redirect.github.com/brettcannon/microvenv/issues/57">#57</a>)</li>
<li>See full diff in <a
href="https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microvenv&package-manager=pip&previous-version=2023.3.post1&new-version=2023.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@8becc7654d3765520b99b973fb61e696748daa66:

Remove unused text edit code (microsoft/vscode-python#22244)

This is part of removing the formatting support from the extension.
--------------------
Commit message for microsoft/vscode-python@7cb3593c1f998d109721f783a0b80ae878dd0164:

Remove unmatched parenthesis from error message (microsoft/vscode-python#22254)

Remove unmatched parenthesis from error message

closes: https://github.com/microsoft/vscode-python/issues/22253
--------------------
Commit message for microsoft/vscode-python@01c7665e37f4674a6a574d38f4f7af9344ec0485:

add correct retrieval of workspace adapter for test discovery in multiroot context (microsoft/vscode-python#22246)

fixes: https://github.com/microsoft/vscode-python/issues/22218
--------------------
Commit message for microsoft/vscode-python@4caa20735b4fa7832e3d62e884cbc04b482f2ad8:

add wrapper hook for pytest_runtest_protocol (microsoft/vscode-python#22243)

fixes https://github.com/microsoft/vscode-python/issues/22232. From
https://github.com/pytest-dev/pytest/discussions/11509, learned that
some pytest hooks are meant to be unique and only one will be called per
run. If multiple plugins are at play then another plugin the user has
might override our plugin. Added the hookwrapper so our is always run.
Same as https://github.com/microsoft/vscode-python/pull/22240
--------------------
Commit message for microsoft/vscode-python@44053a22aafaa4ae1d661f867b4735b237308a14:

add hookwrappers to pytest plugin to ensure run (microsoft/vscode-python#22240)

fixes https://github.com/microsoft/vscode-python/issues/22232. From
[this
discussion](https://github.com/pytest-dev/pytest/discussions/11509),
learned that some pytest hooks are meant to be unique and only one will
be called per run. If multiple plugins are at play then another plugin
the user has might override our plugin. Added the hookwrapper so our is
always run.
--------------------
Commit message for microsoft/vscode-python@754f8effa482d2e37a8dfba588da4d51374e2a63:

remove node deletion for error tolerant discovery (microsoft/vscode-python#22207)

helps with a part of
https://github.com/microsoft/vscode-python/issues/21757
--------------------
Commit message for microsoft/vscode-python@ebaf8fe0d587cfbc190bd89ad4d584c35ff57bd1:

Fix experiment telemetry related to optInto/optOutFrom settings (microsoft/vscode-python#22241)

cc/ @luabud
--------------------
Commit message for microsoft/vscode-python@10b98d34b51b501531ac21027fcab59b12c8e182:

Deprecate the log directory setting (microsoft/vscode-python#22236)


--------------------
Commit message for microsoft/vscode-python@f43826256703a40f76e1a93e677e72e5963689bc:

Add support for a tensorboard experiment (microsoft/vscode-python#22215)


--------------------
Commit message for microsoft/vscode-python@1310bd665d83bcd4e09903bff39ac841dafcad52:

Enable experiments for all tests (microsoft/vscode-python#22194)

Closes: microsoft/vscode-python#22193

Enables to opt into experiments for tests such as single workspace,
multi workspace, debugger, venv, etc.
--------------------
Commit message for microsoft/vscode-python@ed155afa4bf6acdbd0341d093b5a00e13237985e:

remove asserts from catchable code for testing (microsoft/vscode-python#22210)

some asserts were inside functions / mocking and with this then the
extension code catches the exception and doesn't error out as the test.
Bring the asserts out of the functions into the test so the asserts work
as expected.
--------------------
Commit message for microsoft/vscode-python@eada0f1ab940729ae335389c34899d64b56edd35:

Bump microvenv from 2023.2.0 to 2023.3.post1 (microsoft/vscode-python#22204)

Bumps [microvenv](https://github.com/brettcannon/microvenv) from
2023.2.0 to 2023.3.post1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/brettcannon/microvenv/releases">microvenv's
releases</a>.</em></p>
<blockquote>
<h2>2023.3.post1</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>⚠️ Breaking Changes</h3>
<ul>
<li>Add support for <code>scm_ignore_files</code> (and restructure
project) by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/44">brettcannon/microvenv#44</a></li>
</ul>
<h3>🎉 New Features</h3>
<ul>
<li>Add <code>IN_VIRTUAL_ENV</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/47">brettcannon/microvenv#47</a></li>
<li>Add <code>parse_config()</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/48">brettcannon/microvenv#48</a></li>
<li>Add <code>activation()</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/49">brettcannon/microvenv#49</a></li>
<li>Add type annotations by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/50">brettcannon/microvenv#50</a></li>
<li>Add docs by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/51">brettcannon/microvenv#51</a></li>
<li>Add support for Windows (except for <code>create()</code>) by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/55">brettcannon/microvenv#55</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1">https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/brettcannon/microvenv/commit/bf19f920060bd636ce15a992a118ee6a255d15ac"><code>bf19f92</code></a>
Update the docs due to Windows support</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/0c5436dcd8718ba353140e0b2c73327f247d3737"><code>0c5436d</code></a>
Fix <code>docs.yml</code></li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/00d43b4188867d407387f314444d2f0b557383ea"><code>00d43b4</code></a>
Update the version for release</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/2e8d62ec1b9a4bdf57f32bf5aac807b661f176be"><code>2e8d62e</code></a>
Add a <code>release.yml</code> workflow</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7b9ca8aff40eda2495a130453b8586646398d157"><code>7b9ca8a</code></a>
Add support for Windows (except for <code>create()</code>) (<a
href="https://redirect.github.com/brettcannon/microvenv/issues/55">#55</a>)</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7085e42a4b8df4706a4395ff520617801726db22"><code>7085e42</code></a>
Drop CI path requirements</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/f9dc600ebf4feb08486e406688297ce6d61734ab"><code>f9dc600</code></a>
Add mypy's stubtest to linting</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/54e08f8b35b920b4211b706404f55075e9d16b09"><code>54e08f8</code></a>
Clarify that <code>_create.py</code> is self-contained</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/3145fcbaa4a0bc36d832d155d17f34389b8a398e"><code>3145fcb</code></a>
Merge branch 'main' of github.com:brettcannon/microvenv</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/6c0529e2b49469544829dbb50008c933e08cb44b"><code>6c0529e</code></a>
Drop the static HTML directory</li>
<li>Additional commits viewable in <a
href="https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microvenv&package-manager=pip&previous-version=2023.2.0&new-version=2023.3.post1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@76ae73a46bea7e722bf43e4d5550b3d895066d90:

Skip setting `PYTHONUTF8` when activating terminals (microsoft/vscode-python#22213)

Closes https://github.com/microsoft/vscode-python/issues/22205
--------------------
Commit message for microsoft/vscode-python@bdb8efb9dd20cefd56a11687ed7f7dfc89f9f15d:

Try using `import` in webpack condition names (microsoft/vscode-python#22212)


--------------------
Commit message for microsoft/vscode-python@6c23e4335db10e900ea0ca2402e267322c3a2e69:

Handle white spaces for list along with dictionary (microsoft/vscode-python#22209)

Legacy normalization script leaves unnecessary white spaces for
dictionary as well as list. While there are multiple correct usage of it
such as for after a function, for more intuitive REPL experience. We
want to keep previous normalization style and white space format EXCEPT
for dictionary and list case.

Dictionary case is handled, but this is the PR to handle the elimination
of extra white spaces for list as well.
Closes: microsoft/vscode-python#22208
--------------------
Commit message for microsoft/vscode-python@ec001a0b1503555e685996baab8fda4f0648c454:

Fix for webpack warning with LSP types (microsoft/vscode-python#22211)


--------------------
Commit message for microsoft/vscode-python@9b5f58afc0acacacd45c035c4e1a78622944407d:

Add logging for failure to retrieve environment variables, testing rewrite (microsoft/vscode-python#22203)


--------------------
Commit message for microsoft/vscode-python@65c8ac6e3f272d76c9775ad1163a18c61d473119:

Remove formatting settings (microsoft/vscode-python#22202)

Closes https://github.com/microsoft/vscode-python/issues/22183
--------------------
Commit message for microsoft/vscode-python@d1e4562b64e38045f549ca00025c4620a6a89567:

Move tensorboard support into a separate extension (microsoft/vscode-python#22197)

* No need of experiments (if users install extension, then it works)
* If tensorboard extension is installed the we rely on tensorboard
extension to handle everything
* For final deplayment we can decide whether to just remove this feature
altogether or prompt users to install tensorboard extension or to go
with an experiment, for now I wanted to keep this super simple (this
shoudl not affect anyone as no one will have a tensorboard extension
except us)
* Simple private API for tensorboard extension, untill Python ext
exposes a stable API
    * API is similar to Jupyter, scoped to Tensorboard ext
--------------------
Commit message for microsoft/vscode-python@1dd8a4bdb16d0a7e79082c75d8eb55a142a48fc2:

switch testing output to test result panel (microsoft/vscode-python#22039)

closes https://github.com/microsoft/vscode-python/issues/21861 and
related issues

---------

Co-authored-by: Courtney Webster <[email protected]>
--------------------
Commit message for microsoft/vscode-python@055a352285db83158be4374a2e57bdc48b28fda8:

Remove formatting support (microsoft/vscode-python#22196)


--------------------
Commit message for microsoft/vscode-python@75e707be42bf67aac316c900f7d095c1e21bae28:

Update LSP to latest version to support completion itemDefaults (microsoft/vscode-python#22200)

Dirk added this feature here:

https://github.com/microsoft/vscode-languageserver-node/commit/0b7acc15abd7132c9154d94140f478ccf5ba5769

We want to use this in Pylance in order to speedup completions. For the
degenerate case, this can speedup completion results by 30%.

See https://github.com/microsoft/pyrx/issues/4113 and
https://github.com/microsoft/pylance-release/issues/4919
--------------------
Commit message for microsoft/vscode-python@bc0c7144d586d5a7514921ddfc8cd495f1838ba1:

add clickable show logs on discovery error (microsoft/vscode-python#22199)

fixes https://github.com/microsoft/vscode-python/issues/22175
--------------------
Commit message for microsoft/vscode-python@56661a1576b93430953f249cda582eeef30ff543:

REPL Smart Shift+Enter and Dynamic Smart Cursor  (microsoft/vscode-python#21779)

There are two Feature Requests from: microsoft/vscode-python#18105 microsoft/vscode-python#21838 
They are grouped together to provide the smoothest experience: when user
wants to press shift+enter and smoothly move between each executable
Python code block without having to manually move their cursor.

#19955 (For Execute line/selection and advance to next line, referred to
as dynamic smart cursor hereby)
Open Issue: microsoft/vscode-python#21778 microsoft/vscode-python#21838

Steps in implementing REPL Smart Send (smart shift+enter to the REPL)
and dynamic cursor move aka. Move to Next Line (next executable line of
code to be more precise):

1. Figure out the workflow of where things start and run when user
clicks on run selection/line
2. Send the content of selection & document to the Python Side from
Typescript side.
3. Respect and follow previous logic/code for EXPLICIT selection (user
has highlighting particular text they want to send to REPL), but
otherwise, use newly created smart send code.
4. Receive content of document & selection in Python Side
5. Use AST (From Python standard library) to figu…
wesm pushed a commit to posit-dev/positron that referenced this issue Mar 28, 2024
… 2023.20

Merge pull request #244 from posit-dev/merge/upstream-2023.20

Merge upstream vscode-python 2023.20
--------------------
Commit message for posit-dev/positron-python@182a5a1b5c8ca577bea4b303224a2a92a78e8ce9:

Put back gulp installation path instead of nox

--------------------
Commit message for posit-dev/positron-python@bd64148cbb024a183cea2cdacd98c2d7cbf0008a:

Merge upstream 2023.20

--------------------
Commit message for microsoft/vscode-python@32ea534f7144fb1c9bd7502e91451e69f2fcd218:

remove new line chars from error text messages in testing rewrite (microsoft/vscode-python#22402)

fixes https://github.com/microsoft/vscode-python/issues/21512 where 2
extra new lines were seen at the end of an error message popup. Removing
these will restrict stop this from occurring.
--------------------
Commit message for microsoft/vscode-python@ff604ca9988420aefa4f66c1681e3d3374c5e03c:

Add cwd to error logs (microsoft/vscode-python#22387)

closes https://github.com/microsoft/vscode-python/issues/22359
--------------------
Commit message for microsoft/vscode-python@78052bd76e9922a983accd35a84f16c6d1d53f22:

Refactor get_node_path function to handle fspath greedy access  (microsoft/vscode-python#22384)

closes https://github.com/microsoft/vscode-python/issues/20830

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@491c2c8af29916136e0b6540b5d934bf448a51e3:

Bump typing-extensions from 4.7.1 to 4.8.0 (microsoft/vscode-python#22015)

Bumps [typing-extensions](https://github.com/python/typing_extensions)
from 4.7.1 to 4.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/python/typing_extensions/releases">typing-extensions's
releases</a>.</em></p>
<blockquote>
<h2>4.8.0</h2>
<p>Changes since 4.7.1:</p>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
<p>No changes since 4.8.0rc1.</p>
<h2>4.8.0rc1</h2>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/typing_extensions/blob/main/CHANGELOG.md">typing-extensions's
changelog</a>.</em></p>
<blockquote>
<h1>Release 4.8.0 (September 17, 2023)</h1>
<p>No changes since 4.8.0rc1.</p>
<h1>Release 4.8.0rc1 (September 7, 2023)</h1>
<ul>
<li>Add <code>typing_extensions.Doc</code>, as proposed by PEP 727.
Patch by
Sebastián Ramírez.</li>
<li>Drop support for Python 3.7 (including PyPy-3.7). Patch by Alex
Waygood.</li>
<li>Fix bug where <code>get_original_bases()</code> would return
incorrect results when
called on a concrete subclass of a generic class. Patch by Alex Waygood
(backporting <a
href="https://redirect.github.com/python/cpython/pull/107584">python/cpython#107584</a>,
by James
Hilton-Balfe).</li>
<li>Fix bug where <code>ParamSpec(default=...)</code> would raise a
<code>TypeError</code> on Python
versions &lt;3.11. Patch by James Hilton-Balfe</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/typing_extensions/commit/c17c499b865585458bc334a1f895ebaedd2ab854"><code>c17c499</code></a>
Prepare release 4.8.0 (<a
href="https://redirect.github.com/python/typing_extensions/issues/283">#283</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/df9e322f2d9cb66d936fbfeac524b5989b78cfd5"><code>df9e322</code></a>
Run tests on py312 for more third-party projects (<a
href="https://redirect.github.com/python/typing_extensions/issues/281">#281</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/7e294992dfe3070b3ca228555fa3887001ceaab2"><code>7e29499</code></a>
Release 4.8.0rc1 (<a
href="https://redirect.github.com/python/typing_extensions/issues/280">#280</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/ca2a739574fb259f156faba005aaa802e6f19faa"><code>ca2a739</code></a>
Add Doc from PEP 727: <a
href="https://peps.python.org/pep-0727/">https://peps.python.org/pep-0727/</a>
(<a
href="https://redirect.github.com/python/typing_extensions/issues/277">#277</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/13c9484f10f5f4b3ac995c49c06cef42d847723c"><code>13c9484</code></a>
Fix ParamSpec ellipsis default for &lt;3.10 (<a
href="https://redirect.github.com/python/typing_extensions/issues/279">#279</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/4705e747b8380ce466d81b132134bd4ed399eb45"><code>4705e74</code></a>
Improve documentation (<a
href="https://redirect.github.com/python/typing_extensions/issues/278">#278</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/99fa708df2af1ab5ecde47968d71dc5b0447fc5d"><code>99fa708</code></a>
Backport CPython PR 107584 (<a
href="https://redirect.github.com/python/typing_extensions/issues/275">#275</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/688fbd2545944c9c36a0d08084e7c92642a81751"><code>688fbd2</code></a>
Revert &quot;Skip running <code>cattrs</code> tests on PyPy (<a
href="https://redirect.github.com/python/typing_extensions/issues/272">#272</a>)&quot;
(<a
href="https://redirect.github.com/python/typing_extensions/issues/273">#273</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/8dfa0a5dc31b298252d001304b9107be76e4de4c"><code>8dfa0a5</code></a>
Skip running <code>cattrs</code> tests on PyPy (<a
href="https://redirect.github.com/python/typing_extensions/issues/272">#272</a>)</li>
<li><a
href="https://github.com/python/typing_extensions/commit/7bb3f3fca39d477b2bb04f64ff5ea2cc14383e51"><code>7bb3f3f</code></a>
Fix third-party workflow (<a
href="https://redirect.github.com/python/typing_extensions/issues/269">#269</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/typing_extensions/compare/4.7.1...4.8.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typing-extensions&package-manager=pip&previous-version=4.7.1&new-version=4.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@473de33f84fc649f99b1ae4692ecf0653f5d2d8c:

Ensure Python environment defined in `python.defaultInterpreterPath` is returned via discovery API (microsoft/vscode-python#22389)

Closes https://github.com/microsoft/vscode-python/issues/22268

Even when it is not the active interpreter for any workspace, it's still
a known environment which users could consider selecting.
--------------------
Commit message for microsoft/vscode-python@7aefb217ce836d865bdc170c8ef3427549aeac17:

Remove unused packages from `package.json` (microsoft/vscode-python#22386)

closes: https://github.com/microsoft/vscode-python/issues/16840
--------------------
Commit message for microsoft/vscode-python@b65ea3baa48c7ebd2af8e16c7eaf8a33f8d9bd87:

Use nox to install packages (microsoft/vscode-python#22381)


--------------------
Commit message for microsoft/vscode-python@a7262b8d9071c34ccd0dffb4d0fad48092411b31:

Do not prefer Microsoft store interpreter over other global interpreters when auto-selecting (microsoft/vscode-python#22380)

Closes https://github.com/microsoft/vscode-python/issues/22364

Do not compare two global interpreters using their kinds.
--------------------
Commit message for microsoft/vscode-python@b4f06c9e71c8e066d6df3dd787c7880439c4e41b:

Use python test runner for extension python tests (microsoft/vscode-python#22385)

closes https://github.com/microsoft/vscode-python/issues/9051
--------------------
Commit message for microsoft/vscode-python@ed6f4601b21013c1c0d750c751e935439136c44e:

Remove deprecated settings (microsoft/vscode-python#22377)


--------------------
Commit message for microsoft/vscode-python@6d2ab8e063bf3155ca56f782bb43fae84f15c9e0:

Update main version to next pre-release (microsoft/vscode-python#22379)


--------------------
Commit message for microsoft/vscode-python@2ea45befd3a8b5aacf8c92505e9e039f9d13871b:

Update version for release candidate (microsoft/vscode-python#22378)


--------------------
Commit message for microsoft/vscode-python@183a52922661a1d931858c81c6643227ec8ffc86:

allow -v, -f, -q, --local in unittest args (microsoft/vscode-python#22357)

fixes https://github.com/microsoft/vscode-python/issues/22343
--------------------
Commit message for microsoft/vscode-python@93bf5cc2dd89ea98f70c1f85a8a32989e4e635af:

Handle localized shells when powershell execution is disabled (microsoft/vscode-python#22360)

Closes https://github.com/microsoft/vscode-python/issues/22352
--------------------
Commit message for microsoft/vscode-python@56a88b8b885227d04f07eeda47ee7332acaf9fc4:

Trim ends before add lines to logs from create env output (microsoft/vscode-python#22358)

closes https://github.com/microsoft/vscode-python/issues/22321
--------------------
Commit message for microsoft/vscode-python@71a451cb4f7cb6a2e0b192ad0ed4d1ec202a001c:

Save env vars at first pytest hook to ensure theyre unedited (microsoft/vscode-python#22344)

fixes https://github.com/microsoft/vscode-python/issues/22192.

Now, all environment variables are accessed during the
pytest_load_initial_conftests hook and then saved as global variables in
the plugin. This ensures the port and uuid will still be saved even if a
user safely or unsafely clears their environment variables during
testing.

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@c2dec146b9fe53af641ed217c4a567735d4d2d32:

Update warning for the deprecated settings in python (microsoft/vscode-python#22345)

close https://github.com/microsoft/vscode-python/issues/22272
--------------------
Commit message for microsoft/vscode-python@fe229588a6626800e26299aa0c27d0be03698016:

Fix powershell core activation if executing scripts is not supported (microsoft/vscode-python#22350)

Closes https://github.com/microsoft/vscode-python/issues/22252
--------------------
Commit message for microsoft/vscode-python@26b6255420750510bbe50d926835e7064469e920:

fix small logging issues for testing deprecation & duplicate log (microsoft/vscode-python#22349)

fixes https://github.com/microsoft/vscode-python/issues/22327
--------------------
Commit message for microsoft/vscode-python@e6046877f9679641dea61484e6ba4ea62b454591:

Correct condition when logging whether shell integration is active (microsoft/vscode-python#22347)

Introduced by https://github.com/microsoft/vscode-python/pull/22346
--------------------
Commit message for microsoft/vscode-python@b46e1a6ba3c1e6ecb7e847ebbf190f5217df385b:

Log whether shell integration is active (microsoft/vscode-python#22346)

For microsoft/vscode-python#20950
--------------------
Commit message for microsoft/vscode-python@bcb10251f3479cf3dd89b1f79a96bb1cbdfcbd13:

Bump actions/setup-node from 3 to 4 in /.github/actions/build-vsix (microsoft/vscode-python#22296)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@c9944e7b5a05c81992c9c936c1588327cdaf8739:

Bump actions/setup-node from 3 to 4 in /.github/actions/lint (microsoft/vscode-python#22297)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@fa0d02b8358efb02f12fd24bc2560ec9926c77ce:

Bump actions/setup-node from 3 to 4 (microsoft/vscode-python#22298)

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika"><code>@​gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0">https://github.com/actions/setup-node/compare/v3...v4.0.0</a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859">actions/setup-node#859</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote"><code>@​seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2">https://github.com/actions/setup-node/compare/v3...v3.8.2</a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1">https://github.com/actions/setup-node/compare/v3...v3.8.1</a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803">actions/setup-node#803</a></li>
<li>Resolve SymbolicLink by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/809">actions/setup-node#809</a></li>
<li>Change passing logic for cache input by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/816">actions/setup-node#816</a></li>
<li>Fix armv7 cache issue by <a
href="https://github.com/louislam"><code>@​louislam</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/794">actions/setup-node#794</a></li>
<li>Update check-dist workflow name by <a
href="https://github.com/sinchang"><code>@​sinchang</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/710">actions/setup-node#710</a></li>
</ul>
<h3>Feature implementations:</h3>
<ul>
<li>feat: handling the case where &quot;node&quot; is used for
tool-versions file. by <a
href="https://github.com/xytis"><code>@​xytis</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/812">actions/setup-node#812</a></li>
</ul>
<h3>Documentation changes:</h3>
<ul>
<li>Refer to semver package name in README.md by <a
href="https://github.com/olleolleolle"><code>@​olleolleolle</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/808">actions/setup-node#808</a></li>
</ul>
<h3>Update dependencies:</h3>
<ul>
<li>Update toolkit cache to fix zstd by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/804">actions/setup-node#804</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/802">actions/setup-node#802</a></li>
<li>Bump semver from 6.1.2 to 6.3.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/807">actions/setup-node#807</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8f152de45cc393bb48ce5d89d36b731f54556e65"><code>8f152de</code></a>
Update actions/checkout for documentation and yaml (<a
href="https://redirect.github.com/actions/setup-node/issues/876">#876</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/23755b521f87533c8ed7f8fb13674f9021579e34"><code>23755b5</code></a>
upgrade actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-node/issues/868">#868</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/54534a2a9ba7308e8a8995af3104899e6a95b681"><code>54534a2</code></a>
Change node version for action to node20 (<a
href="https://redirect.github.com/actions/setup-node/issues/866">#866</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@10327096932620304a49db6d9742bac676c68b04:

Log commands when using raw process APIs directly (microsoft/vscode-python#22326)


--------------------
Commit message for microsoft/vscode-python@c3afea5984b3dc41b1b3bf2ce04142baaf381029:

Update linter and formatter warning notifications (microsoft/vscode-python#22292)

closes https://github.com/microsoft/vscode-python/issues/22272

---------

Co-authored-by: Luciana Abud <[email protected]>
--------------------
Commit message for microsoft/vscode-python@3c88f27697f4a4b1251146b27b34c56c454ff9c7:

Improve notification texts for terminal activation (microsoft/vscode-python#22323)

Closes https://github.com/microsoft/vscode-python/issues/22316
--------------------
Commit message for microsoft/vscode-python@9e07503d11442bfafb84108d0f0e339eb29c040f:

Use taskkill to kill processes on Windows (microsoft/vscode-python#22286)

For https://github.com/microsoft/vscode-python/issues/22285
--------------------
Commit message for microsoft/vscode-python@daab11d7bfdda996325a7b0ca691c84e7d0fea5e:

Only show terminal notification for basic terminals created using '+' icon (microsoft/vscode-python#22275)


--------------------
Commit message for microsoft/vscode-python@d75874110cbd53bae8a2e2b006814ad1fd21331a:

Add telemetry for deactivate prompt (microsoft/vscode-python#22274)


--------------------
Commit message for microsoft/vscode-python@f57be20d7af6c623774cd148f07ed77c31607ee7:

Support powershell activation even if Powershell execution is disabled on the system (microsoft/vscode-python#22273)

Closes https://github.com/microsoft/vscode-python/issues/22252

Error out if stderr is related to Powershell execution being disabled on
system, even though environment variables are returned in this case,
we've observed they're not valid in this case.
--------------------
Commit message for microsoft/vscode-python@802cf0c136fa30d5a4e69b6cee60e20fb650636d:

Reveal selection after editing deactivate script (microsoft/vscode-python#22271)


--------------------
Commit message for microsoft/vscode-python@63337522aa7bf207b1028323262693d1961a33a1:

add envFile's pythonpath before running tests (microsoft/vscode-python#22269)

fixes https://github.com/microsoft/vscode-python/issues/22231

---------

Co-authored-by: Karthik Nadig <[email protected]>
--------------------
Commit message for microsoft/vscode-python@043881397910818cf43b94b85fb3692a4735a14b:

Guide users to install workaround when deactivate command is run (microsoft/vscode-python#22223)


--------------------
Commit message for microsoft/vscode-python@a55484d3c3ccadfc5144c5aa48bdefcb803a1f97:

Fix for stack overflow on dispose (microsoft/vscode-python#22263)

Closes https://github.com/microsoft/vscode-python/issues/22261
--------------------
Commit message for microsoft/vscode-python@5d7eb6546b2c1e03c9c321410b79fed32f859624:

Remove linting support (microsoft/vscode-python#22266)


--------------------
Commit message for microsoft/vscode-python@c82702e584c01c9891007d792e55d0b48e8ea38a:

Add extra logging to PythonTestServer data received before parsed as json (microsoft/vscode-python#22265)

gives additional insight into cases where the data returned to the
extension occurs but tests are still not populating the UI.
--------------------
Commit message for microsoft/vscode-python@0ffce1999c5c611668c0dcc00eab6397a9f1f137:

Bump microvenv from 2023.3.post1 to 2023.5 (microsoft/vscode-python#22259)

Bumps [microvenv](https://github.com/brettcannon/microvenv) from
2023.3.post1 to 2023.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/brettcannon/microvenv/releases">microvenv's
releases</a>.</em></p>
<blockquote>
<h2>2023.5</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>⚠️ Breaking Changes</h3>
<ul>
<li>Drop Python 3.7 by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/58">brettcannon/microvenv#58</a></li>
</ul>
<h3>🎉 New Features</h3>
<ul>
<li>Get mypy passing under Windows by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/58">brettcannon/microvenv#58</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.4...v2023.5">https://github.com/brettcannon/microvenv/compare/v2023.4...v2023.5</a></p>
<h2>2023.4</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>🪲 Bug Fixes</h3>
<ul>
<li>Prevent <code>__main__.py</code> from attempting to execute on
Windows. by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/57">brettcannon/microvenv#57</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.4">https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7cdcf908438fd1e8b2370624ec80a9ee44a597ec"><code>7cdcf90</code></a>
Get mypy passing under Windows (<a
href="https://redirect.github.com/brettcannon/microvenv/issues/58">#58</a>)</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/d32ca9dc1be5e029d326a240eda5c8137b64009d"><code>d32ca9d</code></a>
Fix <code>.github/workflows/docs.yml</code> syntax</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/ee3b599b2e15e0c409641ad4c8313c9a28f654d9"><code>ee3b599</code></a>
Prevent <code>__main__.py</code> from attempting to execute on Windows.
(<a
href="https://redirect.github.com/brettcannon/microvenv/issues/57">#57</a>)</li>
<li>See full diff in <a
href="https://github.com/brettcannon/microvenv/compare/v2023.3.post1...v2023.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microvenv&package-manager=pip&previous-version=2023.3.post1&new-version=2023.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@8becc7654d3765520b99b973fb61e696748daa66:

Remove unused text edit code (microsoft/vscode-python#22244)

This is part of removing the formatting support from the extension.
--------------------
Commit message for microsoft/vscode-python@7cb3593c1f998d109721f783a0b80ae878dd0164:

Remove unmatched parenthesis from error message (microsoft/vscode-python#22254)

Remove unmatched parenthesis from error message

closes: https://github.com/microsoft/vscode-python/issues/22253
--------------------
Commit message for microsoft/vscode-python@01c7665e37f4674a6a574d38f4f7af9344ec0485:

add correct retrieval of workspace adapter for test discovery in multiroot context (microsoft/vscode-python#22246)

fixes: https://github.com/microsoft/vscode-python/issues/22218
--------------------
Commit message for microsoft/vscode-python@4caa20735b4fa7832e3d62e884cbc04b482f2ad8:

add wrapper hook for pytest_runtest_protocol (microsoft/vscode-python#22243)

fixes https://github.com/microsoft/vscode-python/issues/22232. From
https://github.com/pytest-dev/pytest/discussions/11509, learned that
some pytest hooks are meant to be unique and only one will be called per
run. If multiple plugins are at play then another plugin the user has
might override our plugin. Added the hookwrapper so our is always run.
Same as https://github.com/microsoft/vscode-python/pull/22240
--------------------
Commit message for microsoft/vscode-python@44053a22aafaa4ae1d661f867b4735b237308a14:

add hookwrappers to pytest plugin to ensure run (microsoft/vscode-python#22240)

fixes https://github.com/microsoft/vscode-python/issues/22232. From
[this
discussion](https://github.com/pytest-dev/pytest/discussions/11509),
learned that some pytest hooks are meant to be unique and only one will
be called per run. If multiple plugins are at play then another plugin
the user has might override our plugin. Added the hookwrapper so our is
always run.
--------------------
Commit message for microsoft/vscode-python@754f8effa482d2e37a8dfba588da4d51374e2a63:

remove node deletion for error tolerant discovery (microsoft/vscode-python#22207)

helps with a part of
https://github.com/microsoft/vscode-python/issues/21757
--------------------
Commit message for microsoft/vscode-python@ebaf8fe0d587cfbc190bd89ad4d584c35ff57bd1:

Fix experiment telemetry related to optInto/optOutFrom settings (microsoft/vscode-python#22241)

cc/ @luabud
--------------------
Commit message for microsoft/vscode-python@10b98d34b51b501531ac21027fcab59b12c8e182:

Deprecate the log directory setting (microsoft/vscode-python#22236)


--------------------
Commit message for microsoft/vscode-python@f43826256703a40f76e1a93e677e72e5963689bc:

Add support for a tensorboard experiment (microsoft/vscode-python#22215)


--------------------
Commit message for microsoft/vscode-python@1310bd665d83bcd4e09903bff39ac841dafcad52:

Enable experiments for all tests (microsoft/vscode-python#22194)

Closes: microsoft/vscode-python#22193

Enables to opt into experiments for tests such as single workspace,
multi workspace, debugger, venv, etc.
--------------------
Commit message for microsoft/vscode-python@ed155afa4bf6acdbd0341d093b5a00e13237985e:

remove asserts from catchable code for testing (microsoft/vscode-python#22210)

some asserts were inside functions / mocking and with this then the
extension code catches the exception and doesn't error out as the test.
Bring the asserts out of the functions into the test so the asserts work
as expected.
--------------------
Commit message for microsoft/vscode-python@eada0f1ab940729ae335389c34899d64b56edd35:

Bump microvenv from 2023.2.0 to 2023.3.post1 (microsoft/vscode-python#22204)

Bumps [microvenv](https://github.com/brettcannon/microvenv) from
2023.2.0 to 2023.3.post1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/brettcannon/microvenv/releases">microvenv's
releases</a>.</em></p>
<blockquote>
<h2>2023.3.post1</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>⚠️ Breaking Changes</h3>
<ul>
<li>Add support for <code>scm_ignore_files</code> (and restructure
project) by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/44">brettcannon/microvenv#44</a></li>
</ul>
<h3>🎉 New Features</h3>
<ul>
<li>Add <code>IN_VIRTUAL_ENV</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/47">brettcannon/microvenv#47</a></li>
<li>Add <code>parse_config()</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/48">brettcannon/microvenv#48</a></li>
<li>Add <code>activation()</code> by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/49">brettcannon/microvenv#49</a></li>
<li>Add type annotations by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/50">brettcannon/microvenv#50</a></li>
<li>Add docs by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/51">brettcannon/microvenv#51</a></li>
<li>Add support for Windows (except for <code>create()</code>) by <a
href="https://github.com/brettcannon"><code>@​brettcannon</code></a> in
<a
href="https://redirect.github.com/brettcannon/microvenv/pull/55">brettcannon/microvenv#55</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1">https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/brettcannon/microvenv/commit/bf19f920060bd636ce15a992a118ee6a255d15ac"><code>bf19f92</code></a>
Update the docs due to Windows support</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/0c5436dcd8718ba353140e0b2c73327f247d3737"><code>0c5436d</code></a>
Fix <code>docs.yml</code></li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/00d43b4188867d407387f314444d2f0b557383ea"><code>00d43b4</code></a>
Update the version for release</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/2e8d62ec1b9a4bdf57f32bf5aac807b661f176be"><code>2e8d62e</code></a>
Add a <code>release.yml</code> workflow</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7b9ca8aff40eda2495a130453b8586646398d157"><code>7b9ca8a</code></a>
Add support for Windows (except for <code>create()</code>) (<a
href="https://redirect.github.com/brettcannon/microvenv/issues/55">#55</a>)</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/7085e42a4b8df4706a4395ff520617801726db22"><code>7085e42</code></a>
Drop CI path requirements</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/f9dc600ebf4feb08486e406688297ce6d61734ab"><code>f9dc600</code></a>
Add mypy's stubtest to linting</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/54e08f8b35b920b4211b706404f55075e9d16b09"><code>54e08f8</code></a>
Clarify that <code>_create.py</code> is self-contained</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/3145fcbaa4a0bc36d832d155d17f34389b8a398e"><code>3145fcb</code></a>
Merge branch 'main' of github.com:brettcannon/microvenv</li>
<li><a
href="https://github.com/brettcannon/microvenv/commit/6c0529e2b49469544829dbb50008c933e08cb44b"><code>6c0529e</code></a>
Drop the static HTML directory</li>
<li>Additional commits viewable in <a
href="https://github.com/brettcannon/microvenv/compare/v2023.2.0...v2023.3.post1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microvenv&package-manager=pip&previous-version=2023.2.0&new-version=2023.3.post1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
--------------------
Commit message for microsoft/vscode-python@76ae73a46bea7e722bf43e4d5550b3d895066d90:

Skip setting `PYTHONUTF8` when activating terminals (microsoft/vscode-python#22213)

Closes https://github.com/microsoft/vscode-python/issues/22205
--------------------
Commit message for microsoft/vscode-python@bdb8efb9dd20cefd56a11687ed7f7dfc89f9f15d:

Try using `import` in webpack condition names (microsoft/vscode-python#22212)


--------------------
Commit message for microsoft/vscode-python@6c23e4335db10e900ea0ca2402e267322c3a2e69:

Handle white spaces for list along with dictionary (microsoft/vscode-python#22209)

Legacy normalization script leaves unnecessary white spaces for
dictionary as well as list. While there are multiple correct usage of it
such as for after a function, for more intuitive REPL experience. We
want to keep previous normalization style and white space format EXCEPT
for dictionary and list case.

Dictionary case is handled, but this is the PR to handle the elimination
of extra white spaces for list as well.
Closes: microsoft/vscode-python#22208
--------------------
Commit message for microsoft/vscode-python@ec001a0b1503555e685996baab8fda4f0648c454:

Fix for webpack warning with LSP types (microsoft/vscode-python#22211)


--------------------
Commit message for microsoft/vscode-python@9b5f58afc0acacacd45c035c4e1a78622944407d:

Add logging for failure to retrieve environment variables, testing rewrite (microsoft/vscode-python#22203)


--------------------
Commit message for microsoft/vscode-python@65c8ac6e3f272d76c9775ad1163a18c61d473119:

Remove formatting settings (microsoft/vscode-python#22202)

Closes https://github.com/microsoft/vscode-python/issues/22183
--------------------
Commit message for microsoft/vscode-python@d1e4562b64e38045f549ca00025c4620a6a89567:

Move tensorboard support into a separate extension (microsoft/vscode-python#22197)

* No need of experiments (if users install extension, then it works)
* If tensorboard extension is installed the we rely on tensorboard
extension to handle everything
* For final deplayment we can decide whether to just remove this feature
altogether or prompt users to install tensorboard extension or to go
with an experiment, for now I wanted to keep this super simple (this
shoudl not affect anyone as no one will have a tensorboard extension
except us)
* Simple private API for tensorboard extension, untill Python ext
exposes a stable API
    * API is similar to Jupyter, scoped to Tensorboard ext
--------------------
Commit message for microsoft/vscode-python@1dd8a4bdb16d0a7e79082c75d8eb55a142a48fc2:

switch testing output to test result panel (microsoft/vscode-python#22039)

closes https://github.com/microsoft/vscode-python/issues/21861 and
related issues

---------

Co-authored-by: Courtney Webster <[email protected]>
--------------------
Commit message for microsoft/vscode-python@055a352285db83158be4374a2e57bdc48b28fda8:

Remove formatting support (microsoft/vscode-python#22196)


--------------------
Commit message for microsoft/vscode-python@75e707be42bf67aac316c900f7d095c1e21bae28:

Update LSP to latest version to support completion itemDefaults (microsoft/vscode-python#22200)

Dirk added this feature here:

https://github.com/microsoft/vscode-languageserver-node/commit/0b7acc15abd7132c9154d94140f478ccf5ba5769

We want to use this in Pylance in order to speedup completions. For the
degenerate case, this can speedup completion results by 30%.

See https://github.com/microsoft/pyrx/issues/4113 and
https://github.com/microsoft/pylance-release/issues/4919
--------------------
Commit message for microsoft/vscode-python@bc0c7144d586d5a7514921ddfc8cd495f1838ba1:

add clickable show logs on discovery error (microsoft/vscode-python#22199)

fixes https://github.com/microsoft/vscode-python/issues/22175
--------------------
Commit message for microsoft/vscode-python@56661a1576b93430953f249cda582eeef30ff543:

REPL Smart Shift+Enter and Dynamic Smart Cursor  (microsoft/vscode-python#21779)

There are two Feature Requests from: microsoft/vscode-python#18105 microsoft/vscode-python#21838 
They are grouped together to provide the smoothest experience: when user
wants to press shift+enter and smoothly move between each executable
Python code block without having to manually move their cursor.

#19955 (For Execute line/selection and advance to next line, referred to
as dynamic smart cursor hereby)
Open Issue: microsoft/vscode-python#21778 microsoft/vscode-python#21838

Steps in implementing REPL Smart Send (smart shift+enter to the REPL)
and dynamic cursor move aka. Move to Next Line (next executable line of
code to be more precise):

1. Figure out the workflow of where things start and run when user
clicks on run selection/line
2. Send the content of selection & document to the Python Side from
Typescript side.
3. Respect and follow previous logic/code for EXPLICIT selection (user
has highlighting particular text they want to send to REPL), but
otherwise, use newly created smart send code.
4. Receive content of document & selection in Python Side
5. Use AST (From Python standard library) to figu…
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-environments Features relating to handling interpreter environments author-verification-requested Issues potentially verifiable by issue author bug Issue identified by VS Code Team member as probable bug verified Verification succeeded
Projects
None yet
4 participants