Skip to content

Commit b44debf

Browse files
authored
Merge pull request #49 from Dunedan/python3.13
Add support for Python 3.13
2 parents c19e2db + 9689881 commit b44debf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
python:
1212
- "3.11"
1313
- "3.12"
14+
- "3.13"
1415
steps:
1516
- uses: actions/checkout@v4
1617
- name: Setup Python

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ repos:
5050
- id: ruff-format
5151
args:
5252
- --check
53-
- --target-version
54-
- py311

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3.11",
1515
"Programming Language :: Python :: 3.12",
16+
"Programming Language :: Python :: 3.13",
1617
"Topic :: Games/Entertainment",
1718
"Topic :: Internet :: XMPP",
1819
]
@@ -47,6 +48,7 @@ xpartamupp = "xpartamupp.xpartamupp:main"
4748

4849
[tool.ruff]
4950
line-length = 99
51+
target-version = "py311"
5052

5153
[tool.ruff.format]
5254
line-ending = "lf"

0 commit comments

Comments
 (0)