Skip to content

Instantly share code, notes, and snippets.

@flavio-fernandes
Created January 6, 2021 15:03
Show Gist options
  • Save flavio-fernandes/83f76c1203f319f7bb4d5f425e18528c to your computer and use it in GitHub Desktop.
Save flavio-fernandes/83f76c1203f319f7bb4d5f425e18528c to your computer and use it in GitHub Desktop.
current Adafruit Libraries and update output
# Ref: https://learn.adafruit.com/keep-your-circuitpython-libraries-on-devices-up-to-date-with-circup/usage
$ circup --version
CircUp, A CircuitPython module updater. Version 0.6.0
=-=-=-=-=-=-=-
# Before the update:
$ circup freeze
Found device at /Volumes/CIRCUITPY, running CircuitPython 6.0.1.
adafruit_sdcard==3.3.1
neopixel==6.0.0
adafruit_button==1.4.0
adafruit_pyportal==3.6.2
adafruit_slideshow==1.5.3
adafruit_adt7410==1.2.2
adafruit_logging==1.2.4
adafruit_requests==1.9.1
adafruit_touchscreen==1.1.2
adafruit_minimqtt==4.0.1
adafruit_imageload==0.13.1
adafruit_bitmap_font==1.3.1
adafruit_bus_device==5.0.1
adafruit_register==1.9.1
adafruit_io==5.0.2
adafruit_esp32spi==3.5.3
adafruit_display_text==2.10.1
adafruit_display_shapes==2.0.3
=-=-=-=-=-=-
$ circup list
Found device at /Volumes/CIRCUITPY, running CircuitPython 6.0.1.
The following modules are out of date or probably need an update.
Major Updates may include breaking changes. Review before updating.
Module Version Latest Major Update
--------------------- -------- ------- -------------
adafruit_pyportal 3.6.2 4.0.0 True
adafruit_requests 1.9.1 1.9.2 False
adafruit_bitmap_font 1.3.1 1.3.2 False
adafruit_bus_device 5.0.1 5.0.2 False
adafruit_esp32spi 3.5.3 3.5.4 False
=-=-=-=-=-=-
$ circup update --all
...
$ circup freeze
Found device at /Volumes/CIRCUITPY, running CircuitPython 6.0.1.
adafruit_pyportal==4.0.0
adafruit_sdcard==3.3.1
neopixel==6.0.0
adafruit_button==1.4.0
adafruit_slideshow==1.5.3
adafruit_requests==1.9.2
adafruit_adt7410==1.2.2
adafruit_logging==1.2.4
adafruit_touchscreen==1.1.2
adafruit_minimqtt==4.0.1
adafruit_imageload==0.13.1
adafruit_bitmap_font==1.3.2
adafruit_esp32spi==3.5.4
adafruit_bus_device==5.0.2
adafruit_register==1.9.1
adafruit_io==5.0.2
adafruit_display_text==2.10.1
adafruit_display_shapes==2.0.3
$ circup list
Found device at /Volumes/CIRCUITPY, running CircuitPython 6.0.1.
All modules found on the device are up to date.
=-=-=-=-=-=-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment