Skip to content

Commit 84b8911

Browse files
renovate[bot]renovate-botClivern
committed
Update dependency Django to v3 (#195)
* Update dependency Django to v3 * migrate to django 3 * update travis Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Ahmed <[email protected]>
1 parent 2e6e68d commit 84b8911

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+55
-53
lines changed

.travis.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,24 @@ services:
77

88
python:
99
- "3.5"
10-
- "3.5-dev" # 3.5 development branch
10+
- "3.5-dev"
1111
- "3.6"
12-
- "3.6-dev" # 3.6 development branch
12+
- "3.6-dev"
1313
- "3.7"
14-
- "3.7-dev" # 3.7 development branch
15-
- "3.8-dev" # 3.8 development branch
16-
- "nightly" # nightly build
14+
- "3.7-dev"
15+
- "3.8"
16+
- "3.8-dev"
17+
- "nightly"
1718

1819
matrix:
1920
allow_failures:
2021
- python: "3.5"
2122
- python: "3.5-dev"
23+
- python: "3.6-dev"
24+
- python: "3.7-dev"
2225
- python: "3.8-dev"
23-
- python: "3.8"
2426
- python: "nightly"
25-
27+
2628
# command to install dependencies
2729
install:
2830
- make config

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==2.2.9
1+
Django==3.0.1
22
mysqlclient==1.4.6
33
python-dotenv==0.10.3
44
gunicorn==20.0.4

themes/default/layouts/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}
33
<!doctype html>
44
<html lang="en" dir="ltr">

themes/default/layouts/landing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}
33
<!doctype html>
44
<html lang="en">

themes/default/partials/bottom-menu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}
33

44
<footer class="footer">

themes/default/partials/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}

themes/default/partials/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}
33

44
{% if google_account %}

themes/default/partials/top-menu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load i18n %}
33

44
<div class="header py-4">

themes/default/templates/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/500.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/activity.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/builder.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/component/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/component/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/component/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/component_group/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/component_group/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/component_group/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/incident/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/incident/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/incident/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/incident/update/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/incident/update/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/incident/update/view.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/incident/view.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/metric/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/metric/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/metric/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/notification.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/profile.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/status_page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/subscriber/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55

themes/default/templates/admin/subscriber/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/subscriber/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/admin/user/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/user/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/admin/user/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block customer_header %}

themes/default/templates/forgot_password.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/login.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/register.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/reset_password.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'layouts/base.html' %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44

55
{% block content %}

themes/default/templates/status_page_history.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends 'layouts/base.html' %}
22

3-
{% load staticfiles %}
3+
{% load static %}
44
{% load i18n %}
55

66
{% block favicon %}

themes/default/templates/status_page_index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends 'layouts/base.html' %}
22

3-
{% load staticfiles %}
3+
{% load static %}
44
{% load i18n %}
55

66
{% block favicon %}

themes/default/templates/status_page_single.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends 'layouts/base.html' %}
22

3-
{% load staticfiles %}
3+
{% load static %}
44
{% load i18n %}
55

66
{% block favicon %}

0 commit comments

Comments
 (0)