From b5e9197572d367e3cb8eb1da1330ce83f9a80e04 Mon Sep 17 00:00:00 2001 From: Yoan Le Clanche Date: Tue, 4 Jul 2023 13:58:59 +0200 Subject: [PATCH] Updating docker image --- Dockerfile | 2 +- requirements.txt | 2 +- teleforma/migrations/0027_course_quiz.py | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 teleforma/migrations/0027_course_quiz.py diff --git a/Dockerfile b/Dockerfile index 0ed62a73..0938e973 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM python:3 +FROM python:3.9-buster MAINTAINER Guillaume Pellerin diff --git a/requirements.txt b/requirements.txt index e758853e..e3f48eef 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ dj_pagination==2.5.0 # used by postman django-jazzmin==2.4.7 django-json-rpc==0.7.1 # django-google-tools==1.1.0 -django-nvd3==0.8.2 +django-nvd3==0.9.7 django-postman==4.2 django-tinymce==3.3.0 -e git+https://git.parisson.com/git/django-unique-session.git@master#egg=django-unique-session diff --git a/teleforma/migrations/0027_course_quiz.py b/teleforma/migrations/0027_course_quiz.py new file mode 100644 index 00000000..62143422 --- /dev/null +++ b/teleforma/migrations/0027_course_quiz.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.13 on 2022-10-06 16:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('quiz', '__first__'), + ('teleforma', '0026_period_nb_script_per_session'), + ] + + operations = [ + migrations.AddField( + model_name='course', + name='quiz', + field=models.ManyToManyField(blank=True, null=True, to='quiz.Quiz', verbose_name='quiz'), + ), + ] -- 2.39.5