Prep for v0.0.4

This commit is contained in:
Phil Howard
2020-03-13 15:01:41 +00:00
parent 4f0d537021
commit 86739c6f4c
3 changed files with 18 additions and 16 deletions

View File

@@ -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 0.0.3
----- -----

View File

@@ -1,7 +1,11 @@
Python ST7735 Python ST7735
============= =============
|Build Status| |Coverage Status| |PyPi Package| |Python Versions| `Build Status <https://travis-ci.com/pimoroni/st7735-python>`__
`Coverage
Status <https://coveralls.io/github/pimoroni/st7735-python?branch=master>`__
`PyPi Package <https://pypi.python.org/pypi/st7735>`__ `Python
Versions <https://pypi.python.org/pypi/st7735>`__
Python library to control an ST7735 TFT LCD display. Allows simple Python library to control an ST7735 TFT LCD display. Allows simple
drawing on the display without installing a kernel module. 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 update
sudo apt-get install python-rpi.gpio python-spidev python-pip python-imaging python-numpy sudo apt-get install python-rpi.gpio python-spidev python-pip python-imaging python-numpy
Install this library by running: Install this library by running:
:: ::
sudo pip install st7735 sudo pip install st7735
See example of usage in the examples folder. 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 please support Adafruit and open-source hardware by purchasing products
from Adafruit! from Adafruit!
Modified from 'Modified from 'Adafruit Python ILI9341' written by Tony Modified from Modified from Adafruit Python ILI9341 written by Tony
DiCola for Adafruit Industries.' written by Clement Skau. DiCola for Adafruit Industries. written by Clement Skau.
MIT license, all text above must be included in any redistribution 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

View File

@@ -11,7 +11,7 @@ classifiers = ['Development Status :: 4 - Beta',
'Topic :: System :: Hardware'] 'Topic :: System :: Hardware']
setup(name='ST7735', setup(name='ST7735',
version='0.0.3', version='0.0.4',
description='Library to control an ST7735 168x80 TFT LCD display.', description='Library to control an ST7735 168x80 TFT LCD display.',
long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(), long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(),
license='MIT', license='MIT',