Skip to content

Commit

Permalink
Merge 0265ca4 into 302d1de
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Nov 14, 2021
2 parents 302d1de + 0265ca4 commit 8352aef
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-minor-version: [6, 7, 8, 9]
python-minor-version: [6, 7, 8, 9, 10-dev]
name: Python 3.${{ matrix.python-minor-version }}
steps:
- uses: actions/checkout@v2
Expand All @@ -37,7 +37,9 @@ jobs:
- name: Run tests
env:
TOX_ENV: py3${{ matrix.python-minor-version }}
run: python -m tox -e $TOX_ENV
run: |
python_env=$(echo $TOX_ENV | sed -e s/-dev$//)
python -m tox -e ${python_env}
- name: QA
env:
TOX_ENV: qa,doc
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ Documentation
Full documentation with installation instructions and examples can be found on
https://luma-lcd.readthedocs.io.

Breaking changes
----------------
Upgrade
-------
Version 2.0.0 was released on 2 June 2019: this came with the removal of the
``luma.lcd.aux.backlight`` class. The equivalent functionality has now
been subsumed into the device classes that have a backlight capability.
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = luma.lcd
version = attr: luma.lcd.__version__
description = A library to drive PCD8544, HT1621, ST7735, ST7789, ST7567, UC1701X and ILI9341-based LCD displays
description = A library to drive PCD8544, HD44780, HT1621, ST7735, ST7789, ST7567, UC1701X and ILI9341-based LCD displays
long_description = file: README.rst, CONTRIBUTING.rst, CHANGES.rst
long_description_content_type = text/x-rst
keywords = raspberry pi, rpi, lcd, display, screen, rgb, monochrome, greyscale, color, nokia 5110, pcd8544, st7735, st7789, uc1701x, ht1621, ili9341, hd44780, spi, i2c, parallel, bitbang6800, pcf8574
Expand All @@ -22,6 +22,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
zip_safe = False
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{36,37,38,39},qa,doc
envlist = py{36,37,38,39,310},qa,doc
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 8352aef

Please sign in to comment.