Dos Moonen

Results 50 comments of Dos Moonen

Is the shims folder on your PATH? Does uninstalling (first Windows' `Add or remove Programs` page, then `pyenv uninstall 3.10.5`), upgrading to pyenv 3.1 and installing it again fix it?

> It's good to see `py`, but it deviated the original plan of bringing to native installation to windows. In your case I need to install rustup then only I...

You might want to test #319 and see if I missed anything.

additional workaround: copy pythonservice.exe to `sys.base_prefix` and set `_exe_name_` to that file. This is what we use in our base class ```python class SMWinservice(win32serviceutil.ServiceFramework): """Base class to create winservice in...

MAUI is now generally available https://devblogs.microsoft.com/dotnet/introducing-dotnet-maui-one-codebase-many-platforms/

Since I was wondering myself, this seems to be the current status of things: [In PowerShellGet 3.0 preview 14 the -CredentialInfo parameter was added](https://devblogs.microsoft.com/powershell/powershellget-3-0-preview-14/) which interacts with [SecretManagement](https://devblogs.microsoft.com/powershell/announcing-secretmanagement-1-1-ga/).

Something that should probably be mentioned is whether you tried [python-certifi-win32](https://pypi.org/project/python-certifi-win32/) or not.

The install script seems to report install failure even on succesful installs. Have you tried executing `pyenv --version` in a fresh Powershell window?

`QueryIterator.__anext__` will never throw a `StopAsyncIteration`, does that mean intended usage is to always provide a timeout to `queue.iterator()`?