Skip to content

Commit

Permalink
Prep for v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Feb 7, 2023
1 parent d3c0a10 commit 98383c5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.5.0
-----

* New: inky impression 7.3" support.
* BugFix: WIDTH / HEIGHT set on uc8159.

1.4.0
-----

Expand Down
6 changes: 4 additions & 2 deletions library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion library/inky/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

setup(
name='inky',
version='1.4.0',
version='1.5.0',
author='Philip Howard',
author_email='[email protected]',
description='Inky pHAT Driver',
Expand Down

0 comments on commit 98383c5

Please sign in to comment.