Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
python-minor-version: [11, 12, 13]
name: Python 3.${{ matrix.python-minor-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup pip cache
uses: actions/cache@v3
uses: actions/cache@v5
id: pipcache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: 3.${{ matrix.python-minor-version }}
check-latest: true
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ luma.examples **|**
Luma.Examples
=============

.. image:: https://github.com/rm-hull/luma.examples/workflows/luma.examples/badge.svg?branch=master
:target: https://github.com/rm-hull/luma.examples/actions?workflow=luma.examples
.. image:: https://github.com/rm-hull/luma.examples/actions/workflows/main.yml/badge.svg
:target: https://github.com/rm-hull/luma.examples/actions/workflows/main.yml

This is the companion repo for running examples against the `luma.emulator <https://github.com/rm-hull/luma.emulator>`_,
`luma.oled <https://github.com/rm-hull/luma.oled>`_, `luma.lcd <https://github.com/rm-hull/luma.lcd>`_ and
Expand Down Expand Up @@ -285,7 +285,7 @@ License
-------
The MIT License (MIT)

Copyright (c) 2017-2023 Richard Hull & Contributors
Copyright (c) 2017-2026 Richard Hull & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ 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
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14

[options]
python_requires = >=3.7, <4
python_requires = >=3.9, <4
install_requires =
luma.core>=2.4.0
luma.emulator>=1.3.0
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (c) 2017-2023 Richard Hull and contributors
# Copyright (c) 2017-2026 Richard Hull and contributors
# See LICENSE.rst for details.

[tox]
envlist = py{311,312,313},qa
envlist = py{311,312,313,314},qa
skip_missing_interpreters = True

[testenv]
Expand Down