FoamyGuy / Blinka_Displayio_PyGameDisplay

Blinka makes her debut on the big screen! With this library you can use CircuitPython displayio code on PC and Raspberry Pi to output to a PyGame window instead of a hardware display connected to I2C or SPI. This makes it easy to to use displayio elements on HDMI and other large format screens.
MIT License
9 stars 9 forks source link

recordclass is not installed #5

Closed bablokb closed 1 year ago

bablokb commented 1 year ago

Although recordclass is in requirements.txt, it is not installed. Maybe the last commit did not do what it should have done ("eof line", but I don't see a change).

jposada202020 commented 1 year ago

Same problem here I needed to install it manually, could be here the problem?

https://github.com/FoamyGuy/Blinka_Displayio_PyGameDisplay/blob/6fde0b3a15d19238dfe80c78cfb935eea5b501f1/setup.py#L37

FoamyGuy commented 1 year ago

I believe this is resolved now, it's one of the many improvements from #12.

I confirmed a fresh pip install blinka-displayio-pygamedisplay does now install recordclass and all other required modules.

Might be worth adding some optional dependencies for things like display text, imageload, shapes etc.. which are used by some of the examples. But that can be a separate deal since they aren't strictly required for the base library.