File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
# if you are add a new feature which requires dependencies they should be in a separate requirements_<feature>.in file
4
4
#
5
5
cryptography
6
- Django<6.0
6
+ Django>5.2.0, <6.0
7
7
djangorestframework
8
8
django-crum
9
9
inflection
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ defusedxml==0.8.0rc2
24
24
# via
25
25
# python3-openid
26
26
# social-auth-core
27
- django==4 .2.21
27
+ django==5 .2.7
28
28
# via
29
29
# -r requirements/requirements.in
30
30
# channels
Original file line number Diff line number Diff line change 1
1
ansible # Used in build process to generate some configs
2
2
black==25.1.0 # Linting tool, if changed update pyproject.toml as well
3
3
build
4
- django==4 .2.21
4
+ django==5 .2.7
5
5
django-debug-toolbar
6
6
django-extensions
7
7
djangorestframework
Original file line number Diff line number Diff line change 3
3
4
4
PYTHON=python3.11
5
5
6
+ # Ensure script is run from the requirements/ directory
7
+ if [[ " $( basename $( pwd) ) " != " requirements" ]]; then
8
+ echo " ERROR: This script must be run from the requirements/ directory"
9
+ echo " Current directory: $( pwd) "
10
+ echo " Please run: cd requirements && ./updater.sh [run|upgrade]"
11
+ exit 1
12
+ fi
13
+
6
14
for FILE in requirements.in requirements_all.txt ; do
7
15
if [ ! -f ${FILE} ] ; then
8
16
touch ${FILE}
You can’t perform that action at this time.
0 commit comments