Skip to content

Commit 8d39c73

Browse files
committed
Mark Python 3.12 as supported
1 parent c29c371 commit 8d39c73

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v3
@@ -50,14 +50,14 @@ jobs:
5050
- uses: actions/checkout@v3
5151
- uses: actions/setup-python@v3
5252
with:
53-
python-version: "3.11"
53+
python-version: "3.12"
5454
- uses: isort/isort-action@master
5555
with:
5656
sortPaths: "./mautrix"
5757
- uses: psf/black@stable
5858
with:
5959
src: "./mautrix"
60-
version: "23.1.0"
60+
version: "23.11.0"
6161
- name: pre-commit
6262
run: |
6363
pip install pre-commit

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v4.5.0
44
hooks:
55
- id: trailing-whitespace
66
exclude_types: [markdown]
77
- id: end-of-file-fixer
88
- id: check-yaml
99
- id: check-added-large-files
1010
- repo: https://github.com/psf/black
11-
rev: 23.1.0
11+
rev: 23.11.0
1212
hooks:
1313
- id: black
1414
language_version: python3

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ mautrix-python
33

44
|PyPI| |Python versions| |License| |Docs| |Code style| |Imports|
55

6-
A Python 3.8+ asyncio Matrix framework.
6+
A Python 3.10+ asyncio Matrix framework.
77

88
Matrix room: `#maunium:maunium.net`_
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
"Framework :: AsyncIO",
4343
"Programming Language :: Python",
4444
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.9",
4645
"Programming Language :: Python :: 3.10",
4746
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
4848
],
4949

5050
package_data={

0 commit comments

Comments
 (0)