Skip to content

Commit ffb6912

Browse files
committed
python 3.13 upgrades for compatibility
1 parent 99d96b6 commit ffb6912

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ openlxp-notification >=1.3.5,<1.3.6
5252

5353
p1-auth>=0.2.4,<1.0.0
5454

55-
pandas==2.2.2
55+
pandas==2.2.3
5656

5757
pipdeptree==2.28.0
5858

start-app.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# start-server.sh
33

44
cd /tmp/openlxp-xis/app
5-
python manage.py waitdb
6-
python manage.py migrate
7-
python manage.py createcachetable
8-
python manage.py loaddata admin_theme_data.json
9-
python manage.py collectstatic --no-input
5+
python3 manage.py waitdb
6+
python3 manage.py migrate
7+
python3 manage.py createcachetable
8+
python3 manage.py loaddata admin_theme_data.json
9+
python3 manage.py collectstatic --no-input
1010
cd /tmp/
1111
pwd
1212
./start-server.sh

start-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
# start-server.sh
33
if [ -n "$DJANGO_SUPERUSER_USERNAME" ] && [ -n "$DJANGO_SUPERUSER_PASSWORD" ] ; then
4-
(cd /tmp/openlxp-xis/app; python manage.py createsuperuser --no-input)
4+
(cd /tmp/openlxp-xis/app; python3 manage.py createsuperuser --no-input)
55
fi
66
(cd /tmp/openlxp-xis/app; gunicorn openlxp_xis_project.wsgi --reload --user 1001 --bind 0.0.0.0:8080 --workers 3)
77

0 commit comments

Comments
 (0)