Skip to content

Commit 2741b14

Browse files
authored
Upgrade Django to latest 5.2.x version (#1976)
Signed-off-by: tdruez <[email protected]>
1 parent 214c27b commit 2741b14

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ sqlitedb:
127127
@$(MAKE) migrate
128128

129129
run:
130-
${MANAGE} runserver 8001 --insecure
130+
DJANGO_RUNSERVER_HIDE_WARNING=true ${MANAGE} runserver 8001 --insecure
131131

132132
run-docker-dev:
133133
@echo "-> Run the Docker compose services in dev mode (hot reload on code changes)"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "scancodeio"
7-
version = "35.5.0"
7+
version = "36.0.0-dev"
88
description = "Automate software composition analysis pipelines"
99
readme = "README.rst"
1010
requires-python = ">=3.10,<3.14"
@@ -37,16 +37,16 @@ dependencies = [
3737
"importlib-metadata==8.7.0",
3838
"setuptools==80.9.0",
3939
# Django related
40-
"Django==5.1.14",
40+
"Django==5.2.9",
4141
"django-environ==0.12.0",
4242
"django-crispy-forms==2.5",
4343
"crispy-bootstrap3==2024.1",
44-
"django-filter==25.1",
44+
"django-filter==25.2",
4545
"djangorestframework==3.16.1",
4646
"django-taggit==6.1.0",
4747
"django-htmx==1.27.0",
4848
# Database
49-
"psycopg[binary]==3.2.13",
49+
"psycopg[binary]==3.3.1",
5050
# wait_for_database Django management command
5151
"django-probes==1.8.0",
5252
# Task queue
@@ -85,7 +85,7 @@ dependencies = [
8585
# Profiling
8686
"pyinstrument==5.1.1",
8787
# CycloneDX
88-
"cyclonedx-python-lib==11.5.0",
88+
"cyclonedx-python-lib==11.6.0",
8989
"jsonschema==4.25.1",
9090
# MatchCode-toolkit
9191
"matchcode-toolkit==7.2.2",

scancodeio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
import git
3030

31-
VERSION = "35.5.0"
31+
VERSION = "36.0.0-dev"
3232

3333
PROJECT_DIR = Path(__file__).resolve().parent
3434
ROOT_DIR = PROJECT_DIR.parent

0 commit comments

Comments
 (0)