Skip to content

Commit 08d33f6

Browse files
committed
Add 'detect-secrets' to dependency declaration
1 parent dac2a75 commit 08d33f6

6 files changed

Lines changed: 38 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ lint = [
4141
"mypy",
4242
"bandit",
4343
"vulture",
44+
"detect-secrets",
4445
]
4546
packaging = [
4647
"qt-transifex; python_full_version >= '3.12'",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
# Do no modify requirements files by hand !
3+
4+
Do not modify the requirements files in this directory: they are generated with `make update-requirements`.
5+
6+
If you want to add dev or lint dependencies, use `[dependency-groups]` in the `pyproject.toml` file.

requirements/dev.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ bandit==1.9.4 ; python_full_version >= '3.10'
55
certifi==2026.2.25
66
charset-normalizer==3.4.6
77
colorama==0.4.6 ; sys_platform == 'win32'
8-
detect-secrets==1.4.0 ; python_full_version < '3.10'
9-
detect-secrets==1.5.0 ; python_full_version >= '3.10'
8+
detect-secrets==1.5.0
109
exceptiongroup==1.3.1 ; python_full_version < '3.11'
1110
idna==3.11
1211
iniconfig==2.1.0 ; python_full_version < '3.10'
1312
iniconfig==2.3.0 ; python_full_version >= '3.10'
1413
librt==0.8.1 ; platform_python_implementation != 'PyPy'
15-
lxml==6.1.0
14+
lxml==6.0.2
1615
markdown-it-py==3.0.0 ; python_full_version < '3.10'
1716
markdown-it-py==4.0.0 ; python_full_version >= '3.10'
1817
mdurl==0.1.2
@@ -28,7 +27,7 @@ psycopg-binary==3.2.13 ; python_full_version < '3.10' and implementation_name !=
2827
psycopg-binary==3.3.3 ; python_full_version >= '3.10' and implementation_name != 'pypy'
2928
pygments==2.20.0
3029
pytest==8.4.2 ; python_full_version < '3.10'
31-
pytest==9.0.3 ; python_full_version >= '3.10'
30+
pytest==9.0.2 ; python_full_version >= '3.10'
3231
python-dateutil==2.9.0.post0
3332
pyyaml==6.0.3
3433
requests==2.32.5 ; python_full_version < '3.10'

requirements/lint.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
# uv export --format requirements.txt --no-annotate --no-editable --no-hashes --only-group lint -o requirements/lint.txt
33
bandit==1.8.6 ; python_full_version < '3.10'
44
bandit==1.9.4 ; python_full_version >= '3.10'
5+
certifi==2026.2.25
6+
charset-normalizer==3.4.6
57
colorama==0.4.6 ; sys_platform == 'win32'
6-
detect-secrets==1.4.0 ; python_full_version < '3.10'
7-
detect-secrets==1.5.0 ; python_full_version >= '3.10'
8+
detect-secrets==1.5.0
9+
idna==3.11
810
librt==0.8.1 ; platform_python_implementation != 'PyPy'
911
markdown-it-py==3.0.0 ; python_full_version < '3.10'
1012
markdown-it-py==4.0.0 ; python_full_version >= '3.10'
@@ -15,10 +17,13 @@ mypy-extensions==1.1.0
1517
pathspec==1.0.4
1618
pygments==2.20.0
1719
pyyaml==6.0.3
20+
requests==2.32.5 ; python_full_version < '3.10'
21+
requests==2.33.1 ; python_full_version >= '3.10'
1822
rich==14.3.3
1923
ruff==0.15.8
2024
stevedore==5.5.0 ; python_full_version < '3.10'
2125
stevedore==5.7.0 ; python_full_version >= '3.10'
2226
tomli==2.4.1 ; python_full_version < '3.11'
2327
typing-extensions==4.15.0
28+
urllib3==2.6.3
2429
vulture==2.16

requirements/tests.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ exceptiongroup==1.3.1 ; python_full_version < '3.11'
77
idna==3.11
88
iniconfig==2.1.0 ; python_full_version < '3.10'
99
iniconfig==2.3.0 ; python_full_version >= '3.10'
10-
lxml==6.1.0
10+
lxml==6.0.2
1111
packaging==26.0
1212
pluggy==1.6.0
1313
psycopg==3.2.13 ; python_full_version < '3.10'
@@ -16,7 +16,7 @@ psycopg-binary==3.2.13 ; python_full_version < '3.10' and implementation_name !=
1616
psycopg-binary==3.3.3 ; python_full_version >= '3.10' and implementation_name != 'pypy'
1717
pygments==2.20.0
1818
pytest==8.4.2 ; python_full_version < '3.10'
19-
pytest==9.0.3 ; python_full_version >= '3.10'
19+
pytest==9.0.2 ; python_full_version >= '3.10'
2020
python-dateutil==2.9.0.post0
2121
requests==2.32.5 ; python_full_version < '3.10'
2222
requests==2.33.1 ; python_full_version >= '3.10'

uv.lock

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)