From b8c17ee19fce1aa0e1c5331ebbcf69853d1e3c54 Mon Sep 17 00:00:00 2001 From: Kuzma Date: Fri, 7 Sep 2018 20:49:45 +0300 Subject: Update CONTRIBUTORS.txt --- CONTRIBUTORS.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 593a078f2..0c18d600f 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -328,3 +328,6 @@ Contributors - Benjamin Gmurczyk, 2018/06/14 - Stephen Martin, 2018/09/04 + +- Kuzma Leshakov, 2018/09/07 + -- cgit v1.2.3 From 8367b0b94c470c132ec0c4ba4669733b6ae4f5b7 Mon Sep 17 00:00:00 2001 From: Kuzma Date: Fri, 7 Sep 2018 20:51:56 +0300 Subject: Add missing waitress dependency Waitress is needed in the code used in this tutorial step: https://docs.pylonsproject.org/projects/pyramid/en/latest/quick_tutorial/package.html --- docs/quick_tutorial/package/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/quick_tutorial/package/setup.py b/docs/quick_tutorial/package/setup.py index bcfcfa684..77fedee2d 100644 --- a/docs/quick_tutorial/package/setup.py +++ b/docs/quick_tutorial/package/setup.py @@ -2,8 +2,9 @@ from setuptools import setup requires = [ 'pyramid', + 'waitress', ] setup(name='tutorial', install_requires=requires, -) \ No newline at end of file +) -- cgit v1.2.3