8000 Revert "DOC: add install mode to contribute (#12850)" · xhluca/scikit-learn@ec4ccd1 · GitHub
[go: up one dir, main page]

Skip to content

Commit ec4ccd1

Browse files
author
Xing
committed
Revert "DOC: add install mode to contribute (scikit-learn#12850)"
This reverts commit e2e45a0.
1 parent a130711 commit ec4ccd1

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

doc/developers/contributing.rst

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -199,22 +199,15 @@ then submit a "pull request" (PR):
199199
$ git clone git@github.com:YourLogin/scikit-learn.git
200200
$ cd scikit-learn
201201

202-
4. Install library in editable mode::
203-
204-
$ pip install --editable .
205-
206-
for more details about advanced installation, see the
207-
:ref:`install_bleeding_edge` section.
208-
209-
5. Create a branch to hold your development changes::
202+
4. Create a branch to hold your development changes::
210203

211204
$ git checkout -b my-feature
212205

213206
and start making changes. Always use a ``feature`` branch. It's good practice to
214207
never work on the ``master`` branch!
215208

216-
6. Develop the feature on your feature branch on your computer, using Git to do the
217-
version control. When you're done editing, add changed files using ``git add``
209+
5. Develop the feature on your feature branch on your computer, using Git to do the
210+
version control. When you're done editing, add changed files using ``git add``
218211
and then ``git commit`` files::
219212

220213
$ git add modified_files
@@ -224,17 +217,12 @@ then submit a "pull request" (PR):
224217

225218
$ git push -u origin my-feature
226219

227-
7. Follow `these
220+
6. Follow `these
228221
<https://help.github.com/articles/creating-a-pull-request-from-a-fork>`_
229222
instructions to create a pull request from your fork. This will send an
230223
email to the committers. You may want to consider sending an email to the
231224
mailing list for more visibility.
232225

233-
.. note::
234-
235-
If you are modifying a Cython module, you have to re-run step 4 after modifications
236-
and before testing them.
237-
238226
.. note::
239227

240228
In the above setup, your ``origin`` remote repository points to

0 commit comments

Comments
 (0)
0