From 356a31806f21eff1caf883eea926d5f7e9b4f48e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 13 Dec 2017 13:25:05 +0100 Subject: [PATCH 1/5] 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 4ba9d6e03..4b01929ba 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 2/5] 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 6d3fa8cda..addeef31e 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 3/5] 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 33372244f..7b4e8dfb0 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 4/5] 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 5b4369b89..89c5e63f9 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 5/5] 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 4b01929ba..7e0495546 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