-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from DakaraProject/update/django_lts
Update Django to latest LTS
- Loading branch information
Showing
10 changed files
with
83 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.13 on 2018-05-18 15:32 | ||
from __future__ import unicode_literals | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('users', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='dakarauser', | ||
name='username', | ||
field=models.CharField( | ||
error_messages={'unique': 'A user with that username \ | ||
already exists.'}, | ||
help_text='Required. 30 characters or fewer. Letters, \ | ||
digits and @/./+/-/_ only.', | ||
max_length=30, | ||
unique=True, | ||
validators=[ | ||
django.core.validators.RegexValidator( | ||
'^[\\w.@+-]+$', | ||
'Enter a valid username. This value may contain \ | ||
only letters, numbers and @/./+/-/_ characters.' | ||
) | ||
], | ||
verbose_name='username' | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
Django==1.8.18 | ||
djangorestframework==3.3.1 | ||
pymediainfo==2.1.9 | ||
coreapi==2.3.3 | ||
flake8==3.5.0 | ||
Django==1.11.13 | ||
djangorestframework==3.6.4 | ||
Markdown==2.6.11 | ||
progressbar2==3.34.3 | ||
PyYAML==3.12 | ||
Pygments==2.2.0 | ||
pymediainfo==2.1.9 | ||
pysubs2==0.2.2 | ||
flake8==3.5.0 | ||
PyYAML==3.12 | ||
tblib==1.3.2 |