Skip to content

Commit dfd6e0e

Browse files
authored
Drop Python 3.10 support (#612)
1 parent c6893b7 commit dfd6e0e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
release:
55
types: [published]
66
env:
7-
PYTHON_VERSION: "3.10"
7+
PYTHON_VERSION: "3.11"
88
NODE_VERSION: "18.x"
99

1010
jobs:

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5.0.0
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.11"
2424
- name: Install dependencies
2525
run: |
2626
sudo apt-get update
@@ -38,8 +38,8 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
python-version:
41-
- "3.10"
4241
- "3.11"
42+
- "3.12"
4343

4444
steps:
4545
- name: Check out code from GitHub

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ classifiers = [
1010
"Development Status :: 3 - Alpha",
1111
"Intended Audience :: Developers",
1212
"Environment :: Console",
13-
"Programming Language :: Python :: 3.10",
1413
"Programming Language :: Python :: 3.11",
1514
"Programming Language :: Python :: 3.12",
1615
"Topic :: Home Automation",
@@ -28,7 +27,7 @@ description = "Python Matter WebSocket Server"
2827
license = {text = "Apache-2.0"}
2928
name = "python-matter-server"
3029
readme = "README.md"
31-
requires-python = ">=3.10"
30+
requires-python = ">=3.11"
3231
# The version is set by GH action on release!
3332
version = "0.0.0"
3433

0 commit comments

Comments
 (0)