Skip to content

Commit

Permalink
Merge 9431e8c into cab95a2
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-hull committed Oct 11, 2020
2 parents cab95a2 + 9431e8c commit fbc298b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ cache: pip

matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.5
- python: 3.8
env: TOXENV=qa,doc

install: pip install --ignore-installed --upgrade setuptools pip tox coveralls
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ ChangeLog
+------------+---------------------------------------------------------------------+------------+
| Version | Description | Date |
+============+=====================================================================+============+
| *TBC* | * Drop support for Python 3.5, only 3.6 or newer is supported now | |
+------------+---------------------------------------------------------------------+------------+
| **1.17.2** | * Remove SPI cs_high capability (causing SystemException in latest | 2020/09/11 |
| | version of spidev on 5.4 kernel line) | |
+------------+---------------------------------------------------------------------+------------+
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def find_version(*file_paths):
description=("A component library to support SBC display drivers"),
long_description="\n\n".join([README, CONTRIB, CHANGES]),
long_description_content_type="text/x-rst",
python_requires='>=3.5, <4',
python_requires='>=3.6, <4',
license="MIT",
keywords="raspberry orange banana pi rpi opi sbc oled lcd led display screen spi i2c ftdi usb",
url=project_url,
Expand Down Expand Up @@ -88,7 +88,6 @@ def find_version(*file_paths):
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See LICENSE.rst for details.

[tox]
envlist = py{35,36,37,38},qa,doc
envlist = py{36,37,38},qa,doc
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit fbc298b

Please sign in to comment.