Skip to content

Commit 1baa02c

Browse files
committed
Upgraded to Django 2.2.x and Python 3.7
Also updated all dependencies
1 parent be0d457 commit 1baa02c

File tree

6 files changed

+344
-283
lines changed

6 files changed

+344
-283
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
language: python
77

88
python:
9-
- 3.6
9+
- 3.7
1010

1111
cache: pip
1212

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ intentionally lighter than more popular templates to allow for future flexibilit
99

1010
Features
1111
--------
12-
* Django 2.1.x
13-
* Support for Python 3.6+
12+
* Django 2.2.x
13+
* Support for Python 3.7+
1414
* `12-Factor <https://12factor.net/>`_ based settings via `django-environ <https://django-environ.readthedocs.io/en/latest/>`_
1515
* Custom user model
1616
* Docker support

{{ cookiecutter.project_slug }}/.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
language: python
55

66
python:
7-
- 3.6
7+
- 3.7
88

99
cache: pip
1010

{{ cookiecutter.project_slug }}/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6
1+
FROM python:3.7
22

33
WORKDIR /app/{{ cookiecutter.project_slug }}
44

{{ cookiecutter.project_slug }}/Pipfile

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
argon2-cffi = "~=18.3"
8-
django = "~=2.1.7"
7+
argon2-cffi = "~=19.2.0"
8+
django = "~=2.2.6"
99
django-environ = "~=0.4"
10-
django-extensions = "~=2.1"
11-
django-model-utils = "~=3.1"
10+
django-extensions = "~=2.2"
11+
django-model-utils = "~=3.2"
1212
django-storages = {extras = ["boto3"],version = "~=1.7"}
13-
gevent = "~=1.3"
13+
gevent = "~=1.4"
1414
gunicorn = "~=19.9"
15-
psycopg2-binary = "~=2.7"
15+
psycopg2-binary = "~=2.8"
1616
whitenoise = {extras = ["brotli"],version = "~=4.1"}
1717

1818
[dev-packages]
1919
coverage = "~=4.5"
20-
django-debug-toolbar = "~=1.10"
21-
factory-boy = "~=2.11"
20+
django-debug-toolbar = "~=2.0"
21+
factory-boy = "~=2.12"
2222
isort = "~=4.3"
23-
mypy = "~=0.641"
24-
pycodestyle = "~=2.4"
23+
mypy = "~=0.740"
24+
pycodestyle = "~=2.5"
2525
pylint-django = "~=2.0"
26-
pytest-django = "~=3.4"
26+
pytest-django = "~=3.6"
2727

2828
[requires]
29-
python_version = "3.6"
29+
python_version = "3.7"

0 commit comments

Comments
 (0)