Skip to content

Commit 2302229

Browse files
authored
Merge pull request #1188 from fronzbot/deprecate-py39
Deprecate py39
2 parents da55f57 + 58e4226 commit 2302229

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ jobs:
5353
- name: Upload coverage to Codecov
5454
uses: codecov/codecov-action@v4.4.1
5555
with:
56-
fail_ci_if_error: true
56+
fail_ci_if_error: false
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
name: blinkpy

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
max-parallel: 2
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
17+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
platform:
1616
- ubuntu-latest
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
17+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1818
steps:
1919
- name: Check out code from GitHub
2020
uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ classifiers = [
1515
"Intended Audience :: Developers",
1616
"License :: OSI Approved :: MIT License",
1717
"Operating System :: OS Independent",
18-
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
2221
"Programming Language :: Python :: 3.13",
2322
"Programming Language :: Python :: 3.14",
2423
"Topic :: Home Automation",
2524
]
26-
requires-python = ">=3.9.0"
25+
requires-python = ">=3.10.0"
2726
dynamic = ["dependencies"]
2827

2928
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)