From 356a31806f21eff1caf883eea926d5f7e9b4f48e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 13:25:05 +0100 Subject: [PATCH 01/37] Update raven from 6.3.0 to 6.4.0 (#1402) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 4ba9d6e0..4b01929b 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -29,7 +29,7 @@ django-anymail==1.2 {% if cookiecutter.use_sentry_for_error_reporting == "y" -%} # Raven is the Sentry client # -------------------------- -raven==6.3.0 +raven==6.4.0 {%- endif %} {% if cookiecutter.use_opbeat == "y" -%} From 9a978ef0feaee3e1ffab7d9d4b1aa7e3ee331c33 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 13:25:22 +0100 Subject: [PATCH 02/37] Update pytest from 3.2.5 to 3.3.1 (#1399) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6d3fa8cd..addeef31 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ sh==1.12.14 binaryornot==0.4.4 # Testing -pytest==3.2.5 +pytest==3.3.1 pycodestyle==2.3.1 pyflakes==1.6.0 tox==2.9.1 From 480bc8ef2553da2074befb9e2a1ee67f430410e4 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 13:25:55 +0100 Subject: [PATCH 03/37] Update django-extensions from 1.9.7 to 1.9.8 (#1398) --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 33372244..7b4e8dfb 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -5,7 +5,7 @@ coverage==4.4.2 django-coverage-plugin==1.5.0 Sphinx==1.6.5 -django-extensions==1.9.7 +django-extensions==1.9.8 Werkzeug==0.12.2 django-test-plus==1.0.20 factory-boy==2.9.2 From 8b1fd8ec44952a37bbd236523b6f8abeace30c28 Mon Sep 17 00:00:00 2001 From: Ivan Savov Date: Wed, 13 Dec 2017 04:28:14 -0800 Subject: [PATCH 04/37] added norecursedirs to pytest.ini (#1376) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is to ensure running `pytest` in project root works when using Python 3.6 (otherwise tries to run python tests in `node-gyp` node module and fails with: ``` ―――――――――――――――――――――――――――――――――――――――――――― ERROR collecting node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py ―――――――――――――――――――――――――――――――――――――――――――― ../venv/lib/python3.6/site-packages/_pytest/python.py:395: in _importtestmodule mod = self.fspath.pyimport(ensuresyspath=importmode) ../venv/lib/python3.6/site-packages/py/_path/local.py:662: in pyimport __import__(modname) E File "/Users/ivan/Projects/Minireference/ClassroomLinksProject/classroomlinks/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 37 E print '%s:%s:%d:%s %s' % (mode.upper(), os.path.basename(ctx[0]), E ^ E SyntaxError: invalid syntax ``` --- {{cookiecutter.project_slug}}/pytest.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/{{cookiecutter.project_slug}}/pytest.ini b/{{cookiecutter.project_slug}}/pytest.ini index 5b4369b8..89c5e63f 100644 --- a/{{cookiecutter.project_slug}}/pytest.ini +++ b/{{cookiecutter.project_slug}}/pytest.ini @@ -1,2 +1,5 @@ [pytest] DJANGO_SETTINGS_MODULE=config.settings.test +{% if cookiecutter.js_task_runner != 'None' %} +norecursedirs = node_modules +{% endif %} From a4319f76bdaff1cda145f07a11db10a299bd973a Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 13:37:40 +0100 Subject: [PATCH 05/37] Update boto3 from 1.4.7 to 1.4.8 (#1393) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 4b01929b..7e049554 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.4.7 +boto3==1.4.8 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.5.2 From c410a49ed180747a74ac13cad2a846e837a1e5b0 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 14:05:54 +0100 Subject: [PATCH 06/37] Update werkzeug from 0.12.2 to 0.13 (#1403) --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 7b4e8dfb..e3747566 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -6,7 +6,7 @@ django-coverage-plugin==1.5.0 Sphinx==1.6.5 django-extensions==1.9.8 -Werkzeug==0.12.2 +Werkzeug==0.13 django-test-plus==1.0.20 factory-boy==2.9.2 From 0d1ced03ec0a0e5af1052b30e5a5cef9ddb1d374 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 14:06:09 +0100 Subject: [PATCH 07/37] Update collectfast from 0.5.2 to 0.6.0 (#1401) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 7e049554..53822140 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -19,7 +19,7 @@ gunicorn==19.7.1 boto3==1.4.8 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} -Collectfast==0.5.2 +Collectfast==0.6.0 {%- endif %} # Email backends for Mailgun, Postmark, SendGrid and more From d2dd265a9968740ddf6e59686c4ec520e4d52ff2 Mon Sep 17 00:00:00 2001 From: Pierre Chiquet Date: Wed, 13 Dec 2017 14:06:48 +0100 Subject: [PATCH 08/37] Fix MediaRootS3BotoStorage: do not override existing files (#1367) * Fix MediaRootS3BotoStorage: do not override existing files see https://github.com/jschneier/django-storages/issues/50 * Update "other contributors" * alphabetical order --- CONTRIBUTORS.rst | 1 + {{cookiecutter.project_slug}}/config/settings/production.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 08bca907..4cf632db 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -127,6 +127,7 @@ Listed in alphabetical order. Pablo `@oubiga`_ Parbhat Puri `@parbhat`_ Peter Bittner `@bittner`_ + Pierre Chiquet `@pchiquet`_ Raphael Pierzina `@hackebrot`_ Raony Guimarães Corrêa `@raonyguimaraes`_ Reggie Riser `@reggieriser`_ diff --git a/{{cookiecutter.project_slug}}/config/settings/production.py b/{{cookiecutter.project_slug}}/config/settings/production.py index 9eeb46bc..db581306 100644 --- a/{{cookiecutter.project_slug}}/config/settings/production.py +++ b/{{cookiecutter.project_slug}}/config/settings/production.py @@ -120,7 +120,7 @@ DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage' # See:http://stackoverflow.com/questions/10390244/ from storages.backends.s3boto3 import S3Boto3Storage StaticRootS3BotoStorage = lambda: S3Boto3Storage(location='static') # noqa -MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') # noqa +MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media', file_overwrite=False) # noqa DEFAULT_FILE_STORAGE = 'config.settings.production.MediaRootS3BotoStorage' MEDIA_URL = 'https://s3.amazonaws.com/%s/media/' % AWS_STORAGE_BUCKET_NAME From 5e39a94621f5a93822d72c07f2071c7c1a923313 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Fri, 15 Dec 2017 14:12:09 +0100 Subject: [PATCH 09/37] Update boto3 from 1.4.8 to 1.5.0 (#1405) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 53822140..01c46490 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.4.8 +boto3==1.5.0 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From 2fcaf557246b0968ef4b58b8f60a4fcb377631ac Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Fri, 15 Dec 2017 14:12:20 +0100 Subject: [PATCH 10/37] Update opbeat from 3.5.3 to 3.6.0 (#1404) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 01c46490..fd9d8122 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -35,5 +35,5 @@ raven==6.4.0 {% if cookiecutter.use_opbeat == "y" -%} # Opbeat agent for performance monitoring # ----------------------------------------- -opbeat==3.5.3 +opbeat==3.6.0 {%- endif %} From 5ba730bfa37ca31c934a598e851695f199411129 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 17 Dec 2017 13:44:51 +0100 Subject: [PATCH 11/37] Update boto3 from 1.5.0 to 1.5.1 (#1406) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index fd9d8122..a2021ff1 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.5.0 +boto3==1.5.1 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From d372ec05f956e2de303a667596c174ce2cb06ab4 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 17 Dec 2017 13:52:31 +0100 Subject: [PATCH 12/37] Update django-test-plus to 1.0.21 (#1407) * Update django-test-plus from 1.0.20 to 1.0.21 * Update django-test-plus from 1.0.20 to 1.0.21 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- {{cookiecutter.project_slug}}/requirements/test.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index e3747566..f86cae8c 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -7,7 +7,7 @@ django-coverage-plugin==1.5.0 Sphinx==1.6.5 django-extensions==1.9.8 Werkzeug==0.13 -django-test-plus==1.0.20 +django-test-plus==1.0.21 factory-boy==2.9.2 django-debug-toolbar==1.9.1 diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt index 5c60fe8b..31ab8ff1 100644 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ b/{{cookiecutter.project_slug}}/requirements/test.txt @@ -9,7 +9,7 @@ psycopg2==2.7.3.2 coverage==4.4.2 flake8==3.5.0 # pyup: != 2.6.0 -django-test-plus==1.0.20 +django-test-plus==1.0.21 factory-boy==2.9.2 django-coverage-plugin==1.5.0 From cb7befdf5228c029c2f044377fc69df092aecca7 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 19 Dec 2017 13:58:48 +0100 Subject: [PATCH 13/37] Update boto3 from 1.5.1 to 1.5.2 (#1408) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index a2021ff1..d71feeee 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.5.1 +boto3==1.5.2 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From dfcf646ded01eb27d2099959b2e1ef8385e8babb Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 20 Dec 2017 16:24:34 +0100 Subject: [PATCH 14/37] Update boto3 from 1.5.2 to 1.5.3 (#1411) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index d71feeee..f5fd3b32 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.5.2 +boto3==1.5.3 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From a48ef41e7094ac91f80f0130e3efc0d9826bb47b Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 21 Dec 2017 02:13:21 +0100 Subject: [PATCH 15/37] Update boto3 from 1.5.3 to 1.5.4 (#1412) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index f5fd3b32..1aff2ce3 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.5.3 +boto3==1.5.4 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From 7797585a123828c808c4a0d5893fc34e5a0d7f0a Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 28 Dec 2017 13:36:12 +0100 Subject: [PATCH 16/37] Update boto3 from 1.5.4 to 1.5.6 (#1414) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 1aff2ce3..603fdb80 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -16,7 +16,7 @@ gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ -boto3==1.5.4 +boto3==1.5.6 django-storages==1.6.5 {% if cookiecutter.use_whitenoise != 'y' -%} Collectfast==0.6.0 From 5395687f730f70db16821273f2a7a0efe1fe3dd6 Mon Sep 17 00:00:00 2001 From: Audrey Roy Greenfeld Date: Thu, 28 Dec 2017 08:19:19 -0800 Subject: [PATCH 17/37] Upgraded to Django 1.11 to resolve --- CHANGELOG.md | 4 ++++ README.rst | 4 ++-- {{cookiecutter.project_slug}}/requirements/base.txt | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70a142fc..97340657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All enhancements and patches to Cookiecutter Django will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [2015-12-28] +### Changed +- Upgraded to Django 1.11 (@pydanny) + ## [2015-10-08] ### Changed - Elastic Beanstalk: Added --noinput to migrate command (@MightySCollins ) diff --git a/README.rst b/README.rst index 589f1c92..838253f4 100644 --- a/README.rst +++ b/README.rst @@ -34,8 +34,8 @@ production-ready Django projects quickly. Features --------- -* For Django 1.10 -* Works with Python 3.4.x or 3.5.x. Python 3.6 is experimental +* For Django 1.11 +* Works with Python 3.6 * Renders Django projects with 100% starting test coverage * Twitter Bootstrap_ v4.0.0 - beta 1 (`maintained Foundation fork`_ also available) * 12-Factor_ based settings via django-environ_ diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 00e86bf4..369d8464 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -5,8 +5,8 @@ wheel==0.30.0 -# Bleeding edge Django -django==1.10.8 # pyup: >=1.10,<1.11 +# Conservative Django +django==1.11.8 # pyup: <2.0 # Configuration django-environ==0.4.4 From 35ab85b2a2fddb39daee52b14911067e21abe4eb Mon Sep 17 00:00:00 2001 From: Dan Shultz Date: Thu, 28 Dec 2017 10:28:08 -0600 Subject: [PATCH 18/37] Add OS packages for Elastic Beanstalk deployments (#1277) Fixes #1270 --- {{cookiecutter.project_slug}}/.ebextensions/10_packages.config | 2 ++ {{cookiecutter.project_slug}}/.ebextensions/40_python.config | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.ebextensions/10_packages.config b/{{cookiecutter.project_slug}}/.ebextensions/10_packages.config index c0774efa..136be533 100644 --- a/{{cookiecutter.project_slug}}/.ebextensions/10_packages.config +++ b/{{cookiecutter.project_slug}}/.ebextensions/10_packages.config @@ -3,3 +3,5 @@ packages: git: [] postgresql94-devel: [] libjpeg-turbo-devel: [] + libffi: [] + libffi-devel: [] diff --git a/{{cookiecutter.project_slug}}/.ebextensions/40_python.config b/{{cookiecutter.project_slug}}/.ebextensions/40_python.config index 111bf1ca..03b91eb4 100644 --- a/{{cookiecutter.project_slug}}/.ebextensions/40_python.config +++ b/{{cookiecutter.project_slug}}/.ebextensions/40_python.config @@ -10,7 +10,7 @@ option_settings: REDIS_ENDPOINT_ADDRESS: '`{ "Fn::GetAtt" : [ "MyElastiCache", "RedisEndpoint.Address"]}`' REDIS_PORT: '`{ "Fn::GetAtt" : [ "MyElastiCache", "RedisEndpoint.Port"]}`' "aws:elasticbeanstalk:container:python": - WSGIPath: "config/wsgi.py" + WSGIPath: config/wsgi.py NumProcesses: 3 NumThreads: 20 "aws:elasticbeanstalk:container:python:staticfiles": From 734526a8c5746d3b8065f42a36a288c568caf13b Mon Sep 17 00:00:00 2001 From: Audrey Roy Greenfeld Date: Thu, 28 Dec 2017 08:30:33 -0800 Subject: [PATCH 19/37] Bump to include Python 3.6 --- .travis.yml | 3 ++- setup.py | 2 +- tox.ini | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8ca40c77..e25a5171 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,12 @@ services: language: python -python: 3.5 +python: 3.6 env: - TOX_ENV=py34 - TOX_ENV=py35 + - TOX_ENV=py36 before_install: - sudo sh -c 'echo "deb https://apt.dockerproject.org/repo ubuntu-precise main" > /etc/apt/sources.list.d/docker.list' diff --git a/setup.py b/setup.py index 6dc6635e..a300dc7f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ except ImportError: # Our version ALWAYS matches the version of Django we support # If Django has a new release, we branch, tag, then update this setting after the tag. -version = '1.10.7' +version = '1.11.8' if sys.argv[-1] == 'tag': os.system('git tag -a %s -m "version %s"' % (version, version)) diff --git a/tox.ini b/tox.ini index 311d80f4..f879355a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = true -envlist = py34,py35 +envlist = py34,py35,py36 [testenv] passenv = LC_ALL, LANG, HOME From d7e70a00b66f2769d31ab92057d46c217a75c8d9 Mon Sep 17 00:00:00 2001 From: Audrey Roy Greenfeld Date: Thu, 28 Dec 2017 08:32:13 -0800 Subject: [PATCH 20/37] Updated changelog dates to 2017 --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97340657..c40bb26b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [2015-12-28] +## [2017-12-28] ### Changed - Upgraded to Django 1.11 (@pydanny) -## [2015-10-08] +## [2017-10-08] ### Changed - Elastic Beanstalk: Added --noinput to migrate command (@MightySCollins ) -## [2015-10-07] +## [2017-10-07] ### Added - Finished first pass at Elastic Beanstalk docs (@pydanny & @audreyr) ### Deleted From 806f03310ba0843ccf701b7831f06d1965fc6bb2 Mon Sep 17 00:00:00 2001 From: Daniel Roy Greenfeld Date: Thu, 28 Dec 2017 08:45:28 -0800 Subject: [PATCH 21/37] Python 3.6 or go home --- .travis.yml | 2 -- tox.ini | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e25a5171..f6e18b52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,6 @@ language: python python: 3.6 env: - - TOX_ENV=py34 - - TOX_ENV=py35 - TOX_ENV=py36 before_install: diff --git a/tox.ini b/tox.ini index f879355a..a16b80ed 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = true -envlist = py34,py35,py36 +envlist = py36 [testenv] passenv = LC_ALL, LANG, HOME From 62e822a8eef542e4b815e8fa9349154439e7c542 Mon Sep 17 00:00:00 2001 From: Christian Stade-Schuldt Date: Thu, 28 Dec 2017 19:26:55 +0100 Subject: [PATCH 22/37] add PostgreSQL version 10 (#1394) --- cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookiecutter.json b/cookiecutter.json index 8addeead..184e8796 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -18,7 +18,7 @@ "use_heroku": "n", "use_elasticbeanstalk_experimental": "n", "use_compressor": "n", - "postgresql_version": ["9.6", "9.5", "9.4", "9.3", "9.2"], + "postgresql_version": ["10", "9.6", "9.5", "9.4", "9.3", "9.2"], "js_task_runner": ["Gulp", "Grunt", "None"], "custom_bootstrap_compilation": "n", "open_source_license": ["MIT", "BSD", "GPLv3", "Apache Software License 2.0", "Not open source"] From 8725809f5e24676990fed2a3772ba3dff5232ab5 Mon Sep 17 00:00:00 2001 From: Reggie Riser Date: Thu, 28 Dec 2017 16:26:48 -0500 Subject: [PATCH 23/37] Fixed old Docker service name in PyCharm run configurations. (#1419) --- .../.idea/runConfigurations/Docker__migrate.xml | 2 +- .../.idea/runConfigurations/Docker__tests___all.xml | 2 +- .../.idea/runConfigurations/Docker__tests___class__TestUser.xml | 2 +- .../runConfigurations/Docker__tests___file__test_models.xml | 2 +- .../.idea/runConfigurations/Docker__tests___module__users.xml | 2 +- .../Docker__tests___specific__test_get_absolute_url.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.idea/runConfigurations/Docker__migrate.xml b/{{cookiecutter.project_slug}}/.idea/runConfigurations/Docker__migrate.xml index 95f45bfb..cc2fe0bb 100644 --- a/{{cookiecutter.project_slug}}/.idea/runConfigurations/Docker__migrate.xml +++ b/{{cookiecutter.project_slug}}/.idea/runConfigurations/Docker__migrate.xml @@ -6,7 +6,7 @@ -