8000 DOC: reorganize and simplify contributing.rst by tacaswell · Pull Request #7699 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC: reorganize and simplify contributing.rst #7699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 5, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file 8000
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC: bit more accurate how develop mode works
  • Loading branch information
tacaswell committed Dec 31, 2016
commit de50bfa61524939b65ac351f30ecc6c1ce2bd6f5
11 changes: 6 additions & 5 deletions doc/devel/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@ command from the top-level directory ::

pip install -v -e ./

This installs Matplotlib in 'editable/develop mode', i.e.,
builds everything and places symbolic links back to the source code
from the install directory. Thus, any changes to the ``*.py`` files
will be reflected the next time you import the library. If you change
the c-extension source (which might happen if you change branches) you
This installs Matplotlib in 'editable/develop mode', i.e., builds
everything and places the correct link entries in the install
directory so that python will be able to import Matplotlib from the
source directory. Thus, any changes to the ``*.py`` files will be
reflected the next time you import the library. If you change the
c-extension source (which might happen if you change branches) you
will need to run::

python setup.py build
Expand Down
0