Skip to content
Snippets Groups Projects
Commit a2e41521 authored by Benjamin Hättasch's avatar Benjamin Hättasch
Browse files

Merge branch 'version-upgrades' into 'main'

update dependencies

See merge request !244
parents adaa6e7a 03140cab
No related branches found
No related tags found
1 merge request!244update dependencies
Pipeline #275415 passed
image: python:3.9
image: python:3.11
services:
- mysql
......
......@@ -10,7 +10,7 @@ setup.
### System Requirements
* Python 3.8+ incl. development tools
* Python3.11+ incl. development tools
* Virtualenv
* pdflatex & beamer
class (`texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-extra texlive-luatex`)
......
......@@ -10,7 +10,7 @@ rm -rf venv/
# Setup Python Environment
# Requires: Virtualenv, appropriate Python installation
virtualenv venv -p python3.9
virtualenv venv -p python3.11
source venv/bin/activate
pip install --upgrade setuptools pip wheel
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
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-split-settings==1.3.1
django-timezone-field==6.1.0
djangorestframework==3.15.1
django-simple-history==3.5.0
django-split-settings==1.3.2
django-timezone-field==7.1
djangorestframework==3.15.2
django-simple-history==3.8.0
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-tex==1.1.10
django-csp==3.8
django-compressor==4.4
django-compressor==4.5.1
django-libsass==0.9
django-betterforms==2.0.0
mysqlclient==2.2.0 # for production deployment
mysqlclient==2.2.7 # for production deployment
tzdata==2024.1
# Documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment