Adafruit_CircuitPython_Bundle
Adafruit_CircuitPython_Bundle copied to clipboard
A bundle of useful CircuitPython libraries ready to use from the filesystem.
I find that dividing libraries between device "drivers" and "helpers" is not so helpful. I often have to think about which top-level category to look in. I would rather just...
The doc should note that `adafruit_bus_device` and `adafruit_pixelbuf` are available as native modules on many boards, and maybe explain when the native implementation is used and when the library version...
The libraries list in `docs/drivers.rst` does not visibly include the import name of the library. For instance, if I am looking for the `adafruit_esp32spi` library documentation, and searching for the...
All or nearly all the library `docs/conf.py` files contain this: ```py # The short X.Y version. version = "1.0" # The full version, including alpha/beta/rc tags. release = "1.0" ```...
This would need to be an Adabot patch, but reviewing the CI, we're getting the following warnings: - `license = {text = "MIT"}` => `license = "MIT` - Similarly, license...
We could upgrade all the libraries to switch from `requirements.txt` and `optional-requirements.txt` to defining them full inside `pyproject.toml`. I think the actual change implementation isn't too bad through Adabot's extended...