diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-11 22:46:39 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-11 22:46:39 -0600 |
commit | 450cd0252b4e8e53d574b18a5ad274c2ac32cca6 (patch) | |
tree | 9da081e19b275e8f1e75ad8af36dad717d42090b /docs/development | |
parent | 0839aa858f41f71b292c387f6bc3641083b965bc (diff) | |
download | cryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.tar.gz cryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.tar.bz2 cryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.zip |
fix some indentation and a missing newline
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/getting-started.rst | 38 | ||||
-rw-r--r-- | docs/development/index.rst | 1 |
2 files changed, 20 insertions, 19 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst index b367119e..d2d13a15 100644 --- a/docs/development/getting-started.rst +++ b/docs/development/getting-started.rst @@ -8,9 +8,9 @@ dependencies, install ``cryptography`` in ``editable`` mode. For example: .. code-block:: console - $ # Create a virtualenv and activate it - $ pip install --requirement dev-requirements.txt - $ pip install --editable . + $ # Create a virtualenv and activate it + $ pip install --requirement dev-requirements.txt + $ pip install --editable . You are now ready to run the tests and build the documentation. @@ -23,9 +23,9 @@ automatically, so all you have to do is: .. code-block:: console - $ py.test - ... - 62746 passed in 220.43 seconds + $ py.test + ... + 62746 passed in 220.43 seconds This runs the tests with the default Python interpreter. @@ -35,15 +35,15 @@ each supported Python version and run the tests. For example: .. code-block:: console - $ tox - ... - ERROR: py26: InterpreterNotFound: python2.6 - py27: commands succeeded - ERROR: pypy: InterpreterNotFound: pypy - ERROR: py32: InterpreterNotFound: python3.2 - py33: commands succeeded - docs: commands succeeded - pep8: commands succeeded + $ tox + ... + ERROR: py26: InterpreterNotFound: python2.6 + py27: commands succeeded + ERROR: pypy: InterpreterNotFound: pypy + ERROR: py32: InterpreterNotFound: python3.2 + py33: commands succeeded + docs: commands succeeded + pep8: commands succeeded You may not have all the required Python versions installed, in which case you will see one or more ``InterpreterNotFound`` errors. @@ -68,10 +68,10 @@ Use `tox`_ to build the documentation. For example: .. code-block:: console - $ tox -e docs - ... - docs: commands succeeded - congratulations :) + $ tox -e docs + ... + docs: commands succeeded + congratulations :) The HTML documentation index can now be found at ``docs/_build/html/index.html``. diff --git a/docs/development/index.rst b/docs/development/index.rst index 0524ff0e..c0272299 100644 --- a/docs/development/index.rst +++ b/docs/development/index.rst @@ -1,5 +1,6 @@ Development =========== + As an open source project, ``cryptography`` welcomes contributions of all forms. The sections below will help you get started. |