Commit 1baa02c 1 parent be0d457 commit 1baa02c Copy full SHA for 1baa02c
File tree 6 files changed +344
-283
lines changed
{{ cookiecutter.project_slug }}
6 files changed +344
-283
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
language : python
7
7
8
8
python :
9
- - 3.6
9
+ - 3.7
10
10
11
11
cache : pip
12
12
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ intentionally lighter than more popular templates to allow for future flexibilit
9
9
10
10
Features
11
11
--------
12
- * Django 2.1 .x
13
- * Support for Python 3.6 +
12
+ * Django 2.2 .x
13
+ * Support for Python 3.7 +
14
14
* `12-Factor <https://12factor.net/ >`_ based settings via `django-environ <https://django-environ.readthedocs.io/en/latest/ >`_
15
15
* Custom user model
16
16
* Docker support
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
4
4
language : python
5
5
6
6
python :
7
- - 3.6
7
+ - 3.7
8
8
9
9
cache : pip
10
10
Original file line number Diff line number Diff line change 1
- FROM python:3.6
1
+ FROM python:3.7
2
2
3
3
WORKDIR /app/{{ cookiecutter.project_slug }}
4
4
Original file line number Diff line number Diff line change @@ -4,26 +4,26 @@ verify_ssl = true
4
4
name = " pypi"
5
5
6
6
[packages ]
7
- argon2-cffi = " ~=18.3 "
8
- django = " ~=2.1.7 "
7
+ argon2-cffi = " ~=19.2.0 "
8
+ django = " ~=2.2.6 "
9
9
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 "
12
12
django-storages = {extras = [" boto3" ],version = " ~=1.7" }
13
- gevent = " ~=1.3 "
13
+ gevent = " ~=1.4 "
14
14
gunicorn = " ~=19.9"
15
- psycopg2-binary = " ~=2.7 "
15
+ psycopg2-binary = " ~=2.8 "
16
16
whitenoise = {extras = [" brotli" ],version = " ~=4.1" }
17
17
18
18
[dev-packages ]
19
19
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 "
22
22
isort = " ~=4.3"
23
- mypy = " ~=0.641 "
24
- pycodestyle = " ~=2.4 "
23
+ mypy = " ~=0.740 "
24
+ pycodestyle = " ~=2.5 "
25
25
pylint-django = " ~=2.0"
26
- pytest-django = " ~=3.4 "
26
+ pytest-django = " ~=3.6 "
27
27
28
28
[requires ]
29
- python_version = " 3.6 "
29
+ python_version = " 3.7 "
You can’t perform that action at this time.
0 commit comments