Skip to content

Commit

Permalink
drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Oct 18, 2023
1 parent defa7ab commit e84e9e0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .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: [7, 8, 9, 10, 11, 12, 13-dev]
python-minor-version: [8, 9, 10, 11, 12, 13-dev]
name: Python 3.${{ matrix.python-minor-version }}
steps:
- uses: actions/checkout@v3
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 |
+============+=====================================================================+============+
| **3.14.0** | * Drop support for Python 3.7 | TBD |
+------------+---------------------------------------------------------------------+------------+
| **3.13.0** | * Add support for 128x128 SH1107 | 2023/08/12 |
+------------+---------------------------------------------------------------------+------------+
| **3.12.0** | * Fix 96x16 OLED panel offset | 2023/03/19 |
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Finally, you need to leverage the appropriate interface class and display
class for your device to implement your application. Instructions for that
are included in :doc:`python-usage`.

.. note:: This library has been tested against Python 3.7 and newer.
.. note:: This library has been tested against Python 3.8 and newer.

It was *originally* tested with Raspbian on a rev.2 model B, with a vanilla
kernel version 4.1.16+, and has subsequently been tested on Raspberry Pi
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ classifiers =
Topic :: System :: Hardware
Topic :: System :: Hardware :: Hardware Drivers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
zip_safe = False
packages = find_namespace:
python_requires = >=3.7, <4
python_requires = >=3.8, <4
install_requires =
luma.core>=2.4.0
luma.core>=2.4.1
tests_require =
pytest
pytest-cov
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{37,38,39,310,311,312,313},qa,doc
envlist = py{38,39,310,311,312,313},qa,doc
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit e84e9e0

Please sign in to comment.