Passage à Django 3.2
This commit is contained in:
parent
faa880aa78
commit
d3a10fbff7
3 changed files with 24 additions and 2 deletions
20
elections/migrations/0020_alter_user_first_name.py
Normal file
20
elections/migrations/0020_alter_user_first_name.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# Generated by Django 3.2 on 2021-04-07 11:56
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("elections", "0019_option_winner"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="user",
|
||||||
|
name="first_name",
|
||||||
|
field=models.CharField(
|
||||||
|
blank=True, max_length=150, verbose_name="first name"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
|
@ -86,6 +86,8 @@ TEMPLATES = [
|
||||||
|
|
||||||
WSGI_APPLICATION = "kadenios.wsgi.application"
|
WSGI_APPLICATION = "kadenios.wsgi.application"
|
||||||
|
|
||||||
|
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
|
||||||
|
|
||||||
DEFAULT_FROM_EMAIL = "Kadenios <klub-dev@ens.fr>"
|
DEFAULT_FROM_EMAIL = "Kadenios <klub-dev@ens.fr>"
|
||||||
|
|
||||||
# #############################################################################
|
# #############################################################################
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
django==2.2.*
|
django==3.2.*
|
||||||
authens
|
authens>=0.1b2
|
||||||
numpy
|
numpy
|
||||||
networkx
|
networkx
|
||||||
|
|
Loading…
Reference in a new issue