Skip to content

Commit 7e42dd6

Browse files
committed
update dependencies
1 parent 96fdbec commit 7e42dd6

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v5
1717
with:
18-
python-version: "3.12"
19-
- uses: pre-commit/action@v3.0.1
18+
python-version: "3.13"
19+
- uses: pre-commit/action@v4.1.0

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ default_language_version:
22
python: python3.12
33
repos:
44
- repo: https://github.com/psf/black
5-
rev: 23.10.1
5+
rev: 25.1.0
66
hooks:
77
- id: black
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v4.5.0
9+
rev: v5.0.0
1010
hooks:
1111
- id: check-ast
1212
- id: check-merge-conflict
@@ -20,7 +20,7 @@ repos:
2020
- id: mixed-line-ending
2121
args: [--fix=lf]
2222
- repo: https://github.com/asottile/reorder_python_imports
23-
rev: v3.12.0
23+
rev: v3.14.0
2424
hooks:
2525
- id: reorder-python-imports
2626
args:
@@ -36,14 +36,14 @@ repos:
3636
- id: python-no-log-warn
3737
- id: rst-backticks
3838
- repo: https://github.com/asottile/pyupgrade
39-
rev: v3.15.0
39+
rev: v3.19.1
4040
hooks:
4141
- id: pyupgrade
4242
args:
4343
- --py310-plus
4444
exclude: migrations/
4545
- repo: https://github.com/adamchainz/django-upgrade
46-
rev: 1.15.0
46+
rev: 1.23.1
4747
hooks:
4848
- id: django-upgrade
4949
args:
@@ -63,7 +63,7 @@ repos:
6363
hooks:
6464
- id: pycln
6565
- repo: https://github.com/pycqa/flake8
66-
rev: 6.1.0
66+
rev: 7.1.1
6767
hooks:
6868
- id: flake8
6969
exclude: |

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,18 @@ authors = [
1717
classifiers = [
1818
"Environment :: Web Environment",
1919
"Framework :: Django",
20-
"Framework :: Django :: 3.2",
21-
"Framework :: Django :: 4.0",
22-
"Framework :: Django :: 4.1",
2320
"Framework :: Django :: 4.2",
2421
"Framework :: Django :: 5.0",
22+
"Framework :: Django :: 5.1",
2523
"Intended Audience :: Developers",
2624
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
2725
"Operating System :: OS Independent",
2826
"Programming Language :: Python",
29-
"Programming Language :: Python :: 3.7",
30-
"Programming Language :: Python :: 3.8",
3127
"Programming Language :: Python :: 3.9",
3228
"Programming Language :: Python :: 3.10",
3329
"Programming Language :: Python :: 3.11",
3430
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3532
"Topic :: Internet :: WWW/HTTP",
3633
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
3734
]

0 commit comments

Comments
 (0)