From 15b1c875f5058f66a24c3c7462244a90839fe27d Mon Sep 17 00:00:00 2001 From: Harsha Narayana Date: Fri, 28 Dec 2018 11:30:17 +0530 Subject: [PATCH] fix minor type and pip install instruction mismatch --- README.rst | 2 +- docs/sanic/contributing.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index a1406a14..73b59f68 100644 --- a/README.rst +++ b/README.rst @@ -57,7 +57,7 @@ To install sanic without uvloop or ujson using bash, you can provide either or b using any truthy string like `'y', 'yes', 't', 'true', 'on', '1'` and setting the ``SANIC_NO_X`` (``X`` = ``UVLOOP``/``UJSON``) to true will stop that features installation. -- ``SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip install sanic`` +- ``SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip3 install sanic`` Hello World Example diff --git a/docs/sanic/contributing.rst b/docs/sanic/contributing.rst index f500b4ca..ce4278eb 100644 --- a/docs/sanic/contributing.rst +++ b/docs/sanic/contributing.rst @@ -16,7 +16,7 @@ directory with a virtual environment already set up, then run: .. code:: bash - pip3 install -e . '[.dev]' + pip3 install -e '.[dev]' Dependency Changes ------------------ @@ -35,7 +35,7 @@ the document that explains the way ``sanic`` manages dependencies inside the ``s | extras_require['test'] | for ``sanic`` | | +------------------------+-----------------------------------------------+--------------------------------+ | extras_require['dev'] | Additional Development requirements to add | ``pip3 install -e '.[dev]'`` | -| | contributing | | +| | for contributing | | +------------------------+-----------------------------------------------+--------------------------------+ | extras_require['docs'] | Dependencies required to enable building and | ``pip3 install -e '.[docs]'`` | | | enhancing sanic documentation | |