Skip to content
Snippets Groups Projects
Commit 03140cab authored by Nadja Geisler's avatar Nadja Geisler :sunny:
Browse files

update dependencies

parent adaa6e7a
Branches
No related tags found
1 merge request!244update dependencies
Pipeline #275409 passed
image: python:3.9 image: python:3.11
services: services:
- mysql - mysql
......
...@@ -10,7 +10,7 @@ setup. ...@@ -10,7 +10,7 @@ setup.
### System Requirements ### System Requirements
* Python 3.8+ incl. development tools * Python3.11+ incl. development tools
* Virtualenv * Virtualenv
* pdflatex & beamer * pdflatex & beamer
class (`texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-extra texlive-luatex`) class (`texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-extra texlive-luatex`)
......
...@@ -10,7 +10,7 @@ rm -rf venv/ ...@@ -10,7 +10,7 @@ rm -rf venv/
# Setup Python Environment # Setup Python Environment
# Requires: Virtualenv, appropriate Python installation # Requires: Virtualenv, appropriate Python installation
virtualenv venv -p python3.9 virtualenv venv -p python3.11
source venv/bin/activate source venv/bin/activate
pip install --upgrade setuptools pip wheel pip install --upgrade setuptools pip wheel
pip install -r requirements.txt pip install -r requirements.txt
......
#!/usr/bin/env bash
# Test the AKPlanning setup
# execute as Utils/test.sh
# activate virtualenv when necessary
if [ -z ${VIRTUAL_ENV+x} ]; then
source venv/bin/activate
fi
# enable really all warnings, some of them are silenced by default
if [[ "$@" == *"--all"* ]]; then
export PYTHONWARNINGS=all
fi
# in case of testing production setup
if [[ "$@" == *"--prod"* ]]; then
export DJANGO_SETTINGS_MODULE=AKPlanning.settings_production
./manage.py test --deploy
fi
./manage.py test
Django==4.2.13 Django==4.2.19
django-bootstrap5==24.2 django-bootstrap5==24.2
fontawesomefree==6.5.1 # Makes static files (css, fonts) available locally fontawesomefree==6.5.1 # Makes static files (css, fonts) available locally
django-fontawesome-6==1.0.0.0 # Provides an icon field for models and forms as well as handy shortcuts to render icons django-fontawesome-6==1.0.0.0 # Provides an icon field for models and forms as well as handy shortcuts to render icons
django-split-settings==1.3.1 django-split-settings==1.3.2
django-timezone-field==6.1.0 django-timezone-field==7.1
djangorestframework==3.15.1 djangorestframework==3.15.2
django-simple-history==3.5.0 django-simple-history==3.8.0
django-registration-redux==2.13 django-registration-redux==2.13
django-debug-toolbar==4.3.0 django-debug-toolbar==4.4.6
django-bootstrap-datepicker-plus==5.0.5 django-bootstrap-datepicker-plus==5.0.5
django-tex==1.1.10 django-tex==1.1.10
django-csp==3.8 django-csp==3.8
django-compressor==4.4 django-compressor==4.5.1
django-libsass==0.9 django-libsass==0.9
django-betterforms==2.0.0 django-betterforms==2.0.0
mysqlclient==2.2.0 # for production deployment mysqlclient==2.2.7 # for production deployment
tzdata==2024.1 tzdata==2024.1
# Documentation # Documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment