Skip to content

Commit 91dae44

Browse files
Drop support for Python 3.6 (theolind#410)
1 parent 533fc57 commit 91dae44

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/workflows/test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version:
18-
- "3.6"
1918
- "3.7"
2019
- "3.8"
2120
- "3.9"

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Python API for talking to a [MySensors gateway](http://www.mysensors.org/). Curr
1010

1111
## Requirements
1212

13-
pymysensors requires Python 3.6+.
13+
pymysensors requires Python 3.7+.
1414

1515
## Installation
1616

@@ -242,7 +242,6 @@ make
242242
### Code formatting
243243

244244
We use black code formatter to automatically format the code.
245-
This requires Python 3.6 for development.
246245

247246
```sh
248247
black ./

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
extras_require=EXTRAS,
3636
packages=find_packages(exclude=["tests", "tests.*"]),
3737
include_package_data=True,
38-
python_requires=">=3.6",
38+
python_requires=">=3.7",
3939
entry_points={"console_scripts": ["pymysensors = mysensors.cli:cli"]},
4040
keywords=["sensor", "actuator", "IoT", "DYI"],
4141
zip_safe=True,
@@ -45,7 +45,6 @@
4545
"License :: OSI Approved :: MIT License",
4646
"Natural Language :: English",
4747
"Operating System :: OS Independent",
48-
"Programming Language :: Python :: 3.6",
4948
"Programming Language :: Python :: 3.7",
5049
"Programming Language :: Python :: 3.8",
5150
"Programming Language :: Python :: 3.9",

tox.ini

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, lint
2+
envlist = py37, py38, py39, py310, lint
33
skip_missing_interpreters = True
44

55
[gh-actions]
66
python =
7-
3.6: py36, lint
8-
3.7: py37
7+
3.7: py37, lint
98
3.8: py38
109
3.9: py39
1110
3.10: py310

0 commit comments

Comments
 (0)