upip micropython-logging doesn't get last version of the module

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
angel0ne
Posts: 7
Joined: Sun Mar 21, 2021 4:33 pm

upip micropython-logging doesn't get last version of the module

Post by angel0ne » Wed Apr 14, 2021 2:49 pm

I would like to use the micropython-logging module available here: https://github.com/micropython/micropyt ... er/logging.
To instal this module on my ESP32 board I've used upip:

Code: Select all

import upip
upip.install('micropython-logging')
I see that upip doesn't get the version on the master branch, for some reason it takes an older one (maybe the one was tagged with version 1.9.3). I would have expected that upip have downloaded the code on the master branch, am I missing something? Is there a way to "force" upip to get the last available version of this module? I don't like to manually copy the module py file on my board.

Many thanks.

Post Reply