Skip to content

Commit 350a92b

Browse files
authored
Merge pull request #1102 from ae-utbm/update-deps
Update dependencies
2 parents 95b4b0b + f0fa27a commit 350a92b

5 files changed

Lines changed: 628 additions & 735 deletions

File tree

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
33
# Ruff version.
4-
rev: v0.11.4
4+
rev: v0.11.11
55
hooks:
6-
- id: ruff # just check the code, and print the errors
7-
- id: ruff # actually fix the fixable errors, but print nothing
6+
- id: ruff-check # just check the code, and print the errors
7+
- id: ruff-check # actually fix the fixable errors, but print nothing
88
args: ["--fix", "--silent"]
99
# Run the formatter.
1010
- id: ruff-format

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ authors = [
1717
{ name = "Vial", email = "robin.trioux@utbm.fr" },
1818
]
1919
license = { text = "GPL-3.0-only" }
20-
requires-python = "<4.0,>=3.12"
20+
requires-python = "<4.0,>=3.13"
2121
dependencies = [
22-
"django<6.0.0,>=5.2.0",
22+
"django>=5.2.1,<6.0.0",
2323
"django-ninja<2.0.0,>=1.4.0",
2424
"django-ninja-extra<1.0.0,>=0.22.9",
2525
"Pillow<12.0.0,>=11.1.0",
2626
"mistune<4.0.0,>=3.1.3",
2727
"django-jinja<3.0.0,>=2.11.0",
28-
"cryptography<45.0.0,>=44.0.2",
28+
"cryptography>=45.0.3,<46.0.0",
2929
"django-phonenumber-field<9.0.0,>=8.1.0",
3030
"phonenumbers>=9.0.2,<10.0.0",
3131
"reportlab<5.0.0,>=4.3.1",
@@ -39,17 +39,17 @@ dependencies = [
3939
"jinja2<4.0.0,>=3.1.6",
4040
"django-countries<8.0.0,>=7.6.1",
4141
"dict2xml<2.0.0,>=1.7.6",
42-
"Sphinx<6,>=5",
42+
"Sphinx>=8.2.3,<9",
4343
"tomli<3.0.0,>=2.2.1",
4444
"django-honeypot",
4545
"pydantic-extra-types<3.0.0,>=2.10.3",
4646
"ical<10.0.0,>=9.1.0",
47-
"redis[hiredis]<6.0.0,>=5.2.1",
47+
"redis[hiredis]<6.0.0,>=5.3.0",
4848
"environs[django]<15.0.0,>=14.1.1",
4949
"requests>=2.32.3",
5050
"honcho>=2.0.0",
5151
"psutil>=7.0.0",
52-
"celery[redis]>=5.5.1",
52+
"celery[redis]>=5.5.2",
5353
"django-celery-results>=2.5.1",
5454
"django-celery-beat>=2.7.0",
5555
]
@@ -60,13 +60,13 @@ documentation = "https://sith-ae.readthedocs.io/"
6060

6161
[dependency-groups]
6262
prod = [
63-
"psycopg[c]<4.0.0,>=3.2.6",
63+
"psycopg[c]>=3.2.9,<4.0.0",
6464
]
6565
dev = [
66-
"django-debug-toolbar<5.0.0,>=4.4.6",
66+
"django-debug-toolbar>=5.2.0,<6.0.0",
6767
"ipython<10.0.0,>=9.0.2",
6868
"pre-commit<5.0.0,>=4.1.0",
69-
"ruff<1.0.0,>=0.11.1",
69+
"ruff>=0.11.11,<1.0.0",
7070
"djhtml<4.0.0,>=3.0.7",
7171
"faker<38.0.0,>=37.0.0",
7272
"rjsmin<2.0.0,>=1.2.4",

sith/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,6 @@ def optional_file_parser(value: str) -> Path | None:
723723
"debug_toolbar.panels.headers.HeadersPanel",
724724
"debug_toolbar.panels.request.RequestPanel",
725725
"debug_toolbar.panels.sql.SQLPanel",
726-
"debug_toolbar.panels.staticfiles.StaticFilesPanel",
727726
"sith.toolbar_debug.TemplatesPanel",
728727
"debug_toolbar.panels.cache.CachePanel",
729728
"debug_toolbar.panels.signals.SignalsPanel",

0 commit comments

Comments
 (0)