James Parrott

Results 117 comments of James Parrott

Glad to hear that. The Quick Start should be all you need, if you're using Powershell: > Quick start > > Install pyenv-win in PowerShell. ``` Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/pyenv-win/pyenv-win/master/pyenv-win/install-pyenv-win.ps1"...

Doesn't it install using the original pip command before (complete with %USERPROFILE%), but in a cmd.exe shell, not a Powershell shell? I installed v3.1.1 on Windows 11 with pip. Your...

It's not my package, but hopefully the maintainers will chip in.

Sorry you guys are having this trouble. But for me to fix this I first need to reproduce it. Unfortunately I don't have an RPi to investigate with (just a...

If this bug occurs in micropython, then unfortunately I don't think micropython even provides a simplified version of the `enum` core library: https://github.com/micropython/micropython-lib/issues/269 Does paho.mqtt claim to support Micropython somewhere?...

Perhaps the reason there's so little documentation for `.reinitialise`, and for there being no mention of it in: https://github.com/eclipse/paho.mqtt.python/blob/master/docs/migrations.rst is that `.reinitialise` should not be used for migrations between API...

You can use `.reinitialise` for V1. You can use `.reinitialise` for V2. Don't try to use `.reinitialise` to change a V1 Client into a V2 Client (nor vice-versa) (destroy the...

Ah I misunderstood - sorry. You're creating the Client correctly. However "the V2 reinitialise method" (and the V1 alike) is broken due to #841. the precise way it breaks is...

https://docs.python.org/3/whatsnew/3.13.html#ast > ast > > ... > > In all other cases, where a required argument is omitted, the node constructor will emit a [DeprecationWarning](https://docs.python.org/3/library/exceptions.html#DeprecationWarning). This will raise an exception...

Thanks Joel. I'll give wasm-tools a try. I've got no firm requirement. Just a dream of creating light web apps from statically typed Python code, without a O(10)MB download for...