Skip to content

Commit

Permalink
fix printing requirements in install.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann committed Oct 31, 2019
1 parent 260333c commit a5edb20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fully enumerated below.

The required depedencies for |pyam| are:

.. program-output:: python -c 'import sys; sys.path.append("../.."); import setup; print("\n".join([r for r in setup.REQUIREMENTS]))'
.. program-output:: python -c 'import sys; sys.path.insert(0,"../.."); from setup import REQUIREMENTS; print("\n".join([r for r in REQUIREMENTS]))'

The depedencies for building this documentation are:

Expand Down

0 comments on commit a5edb20

Please sign in to comment.