micropython / micropython-lib

Core Python libraries ported to MicroPython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mip installs old version of `aioble`

iot49 opened this issue · comments

I am trying to install the latest version of aioble with:

mpremote mip install --no-mpy aioble   

The package is installed, but when I look e.g. at Characteristic.indicate in server.py the signature is

async def indicate(self, connection, timeout_ms=1000)

On github/micropython-lib the signature is

async def indicate(self, connection, data=None, timeout_ms=1000)

How do I install the most recent version? Unlike standard pip, mip does not seem to support version controlled installs, as far as I can tell from the documentation. I have no clue where mip gets its files from, if not github (master branch).

Cleared up (embarrassing error).

Sorry this was an issue on our end (the build pipeline had stopped). Thanks for reporting!