Skip to content

Commit 7829c8b

Browse files
committed
Upgrade Django and multiple dependencies
Signed-off-by: tdruez <[email protected]>
1 parent 7bb4499 commit 7829c8b

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

scanpipe/tests/test_pipelines.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,11 @@ def _without_keys(self, data, exclude_keys):
390390

391391
if isinstance(data, dict):
392392
return {
393-
key: self._without_keys(value, exclude_keys)
394-
if type(value) in [list, dict]
395-
else value
393+
key: (
394+
self._without_keys(value, exclude_keys)
395+
if type(value) in [list, dict]
396+
else value
397+
)
396398
for key, value in data.items()
397399
if key not in exclude_keys
398400
}

setup.cfg

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ zip_safe = false
5050
install_requires =
5151
importlib-metadata==7.0.1
5252
# Django related
53-
Django==5.0.1
53+
Django==5.0.2
5454
django-environ==0.11.2
5555
django-crispy-forms==2.1
56-
crispy-bootstrap3==2022.1
56+
crispy-bootstrap3==2024.1
5757
django-filter==23.5
5858
djangorestframework==3.14.0
5959
django-taggit==5.0.1
6060
# Database
61-
psycopg[binary]==3.1.17
61+
psycopg[binary]==3.1.18
6262
# wait_for_database Django management command
6363
django-probes==1.7.0
6464
# Task queue
@@ -76,17 +76,17 @@ install_requires =
7676
# FetchCode
7777
fetchcode-container==1.2.3.210512; sys_platform == "linux"
7878
# Inspectors
79-
python-inspector==0.10.0
79+
python-inspector==0.11.0
8080
aboutcode-toolkit==10.1.0
8181
# Utilities
8282
XlsxWriter==3.1.9
8383
openpyxl==3.1.2
8484
requests==2.31.0
85-
gitpython==3.1.40
85+
gitpython==3.1.41
8686
# Profiling
87-
pyinstrument==4.6.1
87+
pyinstrument==4.6.2
8888
# CycloneDX
89-
cyclonedx-python-lib==6.4.0
89+
cyclonedx-python-lib==6.4.1
9090
jsonschema==4.21.1
9191
hoppr-cyclonedx-models==0.5.5
9292
# Font Awesome
@@ -100,14 +100,14 @@ install_requires =
100100
dev =
101101
# Validation
102102
flake8==7.0.0
103-
black==23.12.1
103+
black==24.2.0
104104
isort==5.13.2
105105
doc8==1.1.1
106106
pydocstyle==6.3.0
107107
# Security analyzer
108-
bandit==1.7.6
108+
bandit==1.7.7
109109
# Debug
110-
django-debug-toolbar==4.2.0
110+
django-debug-toolbar==4.3.0
111111
# Documentation
112112
Sphinx==7.2.6
113113
sphinx-rtd-theme==2.0.0

0 commit comments

Comments
 (0)