Skip to content

Commit

Permalink
chore: Update to Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Nov 28, 2024
1 parent 2c10326 commit ee9a22c
Show file tree
Hide file tree
Showing 6 changed files with 129 additions and 147 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters-win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.12', '3.13']

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.12', '3.13']

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.12', '3.13']

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12
3.13
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ classifiers = [
"Topic :: Security",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11,<3.13"
requires-python = ">=3.12,<3.14"
dependencies = [
"aiofiles >=24.1.0,<25.0",
"aiosqlite >=0.18",
Expand Down Expand Up @@ -80,7 +80,7 @@ plugins = [
]

[tool.ruff]
target-version = "py311"
target-version = "py312"
line-length = 100

[tool.ruff.lint]
Expand Down
Loading

0 comments on commit ee9a22c

Please sign in to comment.