Skip to content

Commit

Permalink
Remove support for Python 3.8 (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Feb 3, 2025
1 parent 6e69d2f commit 64baa14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Python API for talking to a [MySensors gateway](http://www.mysensors.org/). Curr

## Requirements

pymysensors requires Python 3.8+.
pymysensors requires Python 3.9+.

## Installation

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
extras_require=EXTRAS,
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
python_requires=">=3.8",
python_requires=">=3.9",
entry_points={"console_scripts": ["pymysensors = mysensors.cli:cli"]},
keywords=["sensor", "actuator", "IoT", "DYI"],
zip_safe=True,
Expand All @@ -46,7 +46,6 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist = py38, py39, py310, lint
envlist = py39, py310, py311, py312, lint
skip_missing_interpreters = True

[gh-actions]
python =
3.8: py38, lint
3.9: py39
3.9: py39, lint
3.10: py310
3.11: py311
3.12: py312
Expand Down

0 comments on commit 64baa14

Please sign in to comment.