From 86739c6f4c4c3747386484188b04bcfea737d037 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Fri, 13 Mar 2020 15:01:41 +0000 Subject: [PATCH] Prep for v0.0.4 --- library/CHANGELOG.txt | 7 +++++++ library/README.rst | 25 ++++++++++--------------- library/setup.py | 2 +- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index 8be4e97..ed90081 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,10 @@ +0.0.4 +----- + +* Depend upon spidev==3.4.0 for stability fixes +* Switch from manual data chunking to spidev.xfer3() + + 0.0.3 ----- diff --git a/library/README.rst b/library/README.rst index c0d5097..efc50cf 100644 --- a/library/README.rst +++ b/library/README.rst @@ -1,7 +1,11 @@ Python ST7735 ============= -|Build Status| |Coverage Status| |PyPi Package| |Python Versions| +`Build Status `__ +`Coverage +Status `__ +`PyPi Package `__ `Python +Versions `__ Python library to control an ST7735 TFT LCD display. Allows simple drawing on the display without installing a kernel module. @@ -13,14 +17,14 @@ Make sure you have the following dependencies: :: - sudo apt-get update - sudo apt-get install python-rpi.gpio python-spidev python-pip python-imaging python-numpy + sudo apt-get update + sudo apt-get install python-rpi.gpio python-spidev python-pip python-imaging python-numpy Install this library by running: :: - sudo pip install st7735 + sudo pip install st7735 See example of usage in the examples folder. @@ -56,16 +60,7 @@ Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! -Modified from 'Modified from 'Adafruit Python ILI9341' written by Tony -DiCola for Adafruit Industries.' written by Clement Skau. +Modified from ‘Modified from ’Adafruit Python ILI9341’ written by Tony +DiCola for Adafruit Industries.’ written by Clement Skau. MIT license, all text above must be included in any redistribution - -.. |Build Status| image:: https://travis-ci.com/pimoroni/st7735-python.svg?branch=master - :target: https://travis-ci.com/pimoroni/st7735-python -.. |Coverage Status| image:: https://coveralls.io/repos/github/pimoroni/st7735-python/badge.svg?branch=master - :target: https://coveralls.io/github/pimoroni/st7735-python?branch=master -.. |PyPi Package| image:: https://img.shields.io/pypi/v/st7735.svg - :target: https://pypi.python.org/pypi/st7735 -.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/st7735.svg - :target: https://pypi.python.org/pypi/st7735 diff --git a/library/setup.py b/library/setup.py index 22c4453..85d144c 100644 --- a/library/setup.py +++ b/library/setup.py @@ -11,7 +11,7 @@ classifiers = ['Development Status :: 4 - Beta', 'Topic :: System :: Hardware'] setup(name='ST7735', - version='0.0.3', + version='0.0.4', description='Library to control an ST7735 168x80 TFT LCD display.', long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(), license='MIT',