summaryrefslogtreecommitdiff
path: root/lib/spack/docs/contribution_guide.rst
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/docs/contribution_guide.rst')
-rw-r--r--lib/spack/docs/contribution_guide.rst29
1 files changed, 2 insertions, 27 deletions
diff --git a/lib/spack/docs/contribution_guide.rst b/lib/spack/docs/contribution_guide.rst
index 837a850ff9..455a420ff2 100644
--- a/lib/spack/docs/contribution_guide.rst
+++ b/lib/spack/docs/contribution_guide.rst
@@ -253,27 +253,6 @@ to update them.
multiple runs of ``spack style`` just to re-compute line numbers and
makes it much easier to fix errors directly off of the CI output.
-.. warning::
-
- Flake8 and ``pep8-naming`` require a number of dependencies in order
- to run. If you installed ``py-flake8`` and ``py-pep8-naming``, the
- easiest way to ensure the right packages are on your ``PYTHONPATH`` is
- to run::
-
- spack activate py-flake8
- spack activate pep8-naming
-
- so that all of the dependencies are symlinked to a central
- location. If you see an error message like:
-
- .. code-block:: console
-
- Traceback (most recent call last):
- File: "/usr/bin/flake8", line 5, in <module>
- from pkg_resources import load_entry_point
- ImportError: No module named pkg_resources
-
- that means Flake8 couldn't find setuptools in your ``PYTHONPATH``.
^^^^^^^^^^^^^^^^^^^
Documentation Tests
@@ -309,13 +288,9 @@ All of these can be installed with Spack, e.g.
.. code-block:: console
- $ spack activate py-sphinx
- $ spack activate py-sphinx-rtd-theme
- $ spack activate py-sphinxcontrib-programoutput
+ $ spack load py-sphinx py-sphinx-rtd-theme py-sphinxcontrib-programoutput
- so that all of the dependencies are symlinked into that Python's
- tree. Alternatively, you could arrange for their library
- directories to be added to PYTHONPATH. If you see an error message
+ so that all of the dependencies are added to PYTHONPATH. If you see an error message
like:
.. code-block:: console