diff --git a/Makefile b/Makefile index ca15b0b4..8f176715 100644 --- a/Makefile +++ b/Makefile @@ -42,10 +42,9 @@ library/LICENSE.txt: LICENSE python-wheels: python-readme python-license cd library; python3 setup.py bdist_wheel - cd library; python setup.py bdist_wheel python-sdist: python-readme python-license - cd library; python setup.py sdist + cd library; python3 setup.py sdist python-clean: -rm -r library/dist diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index 1c8a8d54..da9f5000 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,9 @@ +1.5.0 +----- + +* New: inky impression 7.3" support. +* BugFix: WIDTH / HEIGHT set on uc8159. + 1.4.0 ----- diff --git a/library/README.md b/library/README.md index f66515af..2cf1f74b 100644 --- a/library/README.md +++ b/library/README.md @@ -18,14 +18,16 @@ Python library for [Inky pHAT](https://shop.pimoroni.com/products/inky-phat), [I ## Inky Impression -[Inky Impression](https://shop.pimoroni.com/?q=inky+impression) is our line of glorious 7 colour eInk displays, available in [4"](https://shop.pimoroni.com/products/inky-impression-4) (640 x 400 pixel) and [5.7"](https://shop.pimoroni.com/products/inky-impression-5-7) (600 x 448 pixel) flavours. They're packed with strong colours and perfect for displaying striking graphics or lots of data. +[Inky Impression](https://shop.pimoroni.com/?q=inky+impression) is our line of glorious 7 colour eInk displays, available in [4"](https://shop.pimoroni.com/products/inky-impression-4) (640 x 400 pixel) [5.7"](https://shop.pimoroni.com/products/inky-impression-5-7) (600 x 448 pixel) and [7.3"](https://shop.pimoroni.com/products/inky-impression-7-3) (800 x 480 pixel) flavours. They're packed with strong colours and perfect for displaying striking graphics or lots of data. # Installation +First, make sure you have I2C and SPI enabled in `sudo raspi-config`. + The Python pip package is named inky, on the Raspberry Pi install with: ``` -pip3 install inky[rpi,fonts] +pip3 install inky[rpi,example-depends] ``` This will install Inky along with dependencies for the Raspberry Pi, plus fonts used by the examples. diff --git a/library/inky/__init__.py b/library/inky/__init__.py index 5f592f95..240a28f5 100644 --- a/library/inky/__init__.py +++ b/library/inky/__init__.py @@ -10,7 +10,7 @@ from .inky_ac073tc1a import Inky as Inky_Impressions_7 # noqa: F401 from .auto import auto # noqa: F401 -__version__ = '1.4.0' +__version__ = '1.5.0' try: from pkg_resources import declare_namespace diff --git a/library/setup.py b/library/setup.py index fd5e4cff..6c442cce 100755 --- a/library/setup.py +++ b/library/setup.py @@ -38,7 +38,7 @@ setup( name='inky', - version='1.4.0', + version='1.5.0', author='Philip Howard', author_email='phil@pimoroni.com', description='Inky pHAT Driver',