Skip to content

Commit d1bf554

Browse files
committed
Add Django 6.0, Python 3.14, etc.
1 parent db13369 commit d1bf554

5 files changed

Lines changed: 17 additions & 18 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- "3.11"
2222
- "3.12"
2323
- "3.13"
24+
- "3.14"
2425

2526
steps:
2627
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ repos:
1414
- id: mixed-line-ending
1515
- id: trailing-whitespace
1616
- repo: https://github.com/adamchainz/django-upgrade
17-
rev: 1.28.0
17+
rev: 1.30.0
1818
hooks:
1919
- id: django-upgrade
2020
args: [--target-version, "3.2"]
2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: "v0.13.0"
22+
rev: "v0.15.11"
2323
hooks:
2424
- id: ruff
2525
args: [--unsafe-fixes]
2626
- id: ruff-format
2727
- repo: https://github.com/biomejs/pre-commit
28-
rev: "v2.2.4"
28+
rev: "v2.4.12"
2929
hooks:
3030
- id: biome-check
3131
args: [--unsafe]
3232
verbose: true
3333
- repo: https://github.com/tox-dev/pyproject-fmt
34-
rev: v2.6.0
34+
rev: v2.21.1
3535
hooks:
3636
- id: pyproject-fmt
3737
- repo: https://github.com/abravalheri/validate-pyproject
38-
rev: v0.24.1
38+
rev: v0.25
3939
hooks:
4040
- id: validate-pyproject

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
33
"assist": { "actions": { "source": { "organizeImports": "off" } } },
44
"formatter": {
55
"enabled": true,

pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
]
3031
dynamic = [
3132
"version",
@@ -39,15 +40,12 @@ optional-dependencies.tests = [
3940
]
4041
urls.Homepage = "http://github.com/matthiask/django-authlib/"
4142

42-
[tool.hatch.build]
43-
include = [ "authlib/" ]
44-
45-
[tool.hatch.version]
46-
path = "authlib/__init__.py"
43+
[tool.hatch]
44+
build.include = [ "authlib/" ]
45+
version.path = "authlib/__init__.py"
4746

4847
[tool.ruff]
4948
target-version = "py39"
50-
5149
fix = true
5250
show-fixes = true
5351
lint.extend-select = [

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[tox]
22
envlist =
33
py{38,39,310}-dj{32,42}
4-
py{310,311}-dj{32,42,50}
5-
py{312}-dj{42,50,51,52,main}
6-
py{313}-dj{51,52,main}
4+
py{310,311}-dj{32,42}
5+
py{312}-dj{42,52,main}
6+
py{313}-dj{52,60,main}
7+
py{314}-dj{52,60,main}
78

89
[testenv]
910
usedevelop = true
@@ -14,9 +15,8 @@ commands =
1415
deps =
1516
dj32: Django>=3.2,<4.0
1617
dj42: Django>=4.2,<5.0
17-
dj50: Django>=5.0,<5.1
18-
dj51: Django>=5.1,<5.2
19-
dj52: Django>=5.2a1,<6.0
18+
dj52: Django>=5.2,<6.0
19+
dj60: Django>=6.0,<6.1
2020
djmain: https://github.com/django/django/archive/main.tar.gz
2121

2222
[testenv:docs]

0 commit comments

Comments
 (0)