Skip to content

Commit 65d2c56

Browse files
committed
3.8 is the minimum
1 parent c618f34 commit 65d2c56

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616

1717
steps:
1818
- name: Checkout

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
rev: v3.21.2
2020
hooks:
2121
- id: pyupgrade
22-
args: ["--py37-plus"]
22+
args: ["--py38-plus"]
2323

2424
- repo: https://github.com/psf/black
2525
rev: 26.1.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ See [wiki](https://github.com/ParadoxAlarmInterface/pai/wiki/Installation)
6565
## Tested Environment
6666

6767
Tested in the following environment:
68-
* Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14
68+
* Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14
6969
* Mosquitto MQTT Broker > 1.4.8
7070
* OrangePi 2G-IOT, NanoPi NEO, and Raspberry Pi 3 through their built in Serial Port (with a level shifter!), or a USB RS232 TTL adapter (CP2102, PL2303, CH340, etc..)
7171
* Ubuntu Server 16.04.3 LTS

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=46.4.0"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
6-
target-version = ["py37", "py38", "py39", "py310", "py311", "py312", "py313", "py314"]
6+
target-version = ["py38", "py39", "py310", "py311", "py312", "py313", "py314"]
77
exclude = 'generated'
88

99
[tool.isort]

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers =
1717
Operating System :: OS Independent
1818
Programming Language :: Python
1919
Programming Language :: Python :: 3 :: Only
20-
Programming Language :: Python :: 3.7
2120
Programming Language :: Python :: 3.8
2221
Programming Language :: Python :: 3.9
2322
Programming Language :: Python :: 3.10
@@ -30,7 +29,7 @@ license = EPL
3029
[options]
3130
zip_safe = True
3231
packages = find:
33-
python_requires = >=3.7
32+
python_requires = >=3.8
3433
install_requires =
3534
construct~=2.10.70
3635
argparse>=1.4.0

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, py312, py313, py314
2+
envlist = py38, py39, py310, py311, py312, py313, py314
33
isolated_build = True
44
skip_missing_interpreters = True
55

0 commit comments

Comments
 (0)