You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,14 @@ The current list of issue labels are [here][link_labels] and include:
35
35
Please try to make sure that your requested enhancement is distinct from any others that have already been requested or implemented.
36
36
If you find one that's similar but there are subtle differences, please reference the other request in your issue.
37
37
38
+
*[][link_orphaned]*These pull requests have been closed for inactivity.*
39
+
40
+
Before proposing a new pull request, browse through the "orphaned" pull requests.
41
+
You may find that someone has already made significant progress toward your goal, and you can re-use their
42
+
unfinished work.
43
+
An adopted PR should be updated to merge or rebase the current master, and a new PR should be created (see
44
+
below) that references the original PR.
45
+
38
46
## Making a change
39
47
40
48
We appreciate all contributions to Nipype, but those accepted fastest will follow a workflow similar to the following:
@@ -57,8 +65,9 @@ Make sure to [keep your fork up to date][link_updateupstreamwiki] with the maste
57
65
If you're adding a new tool from an existing neuroimaging toolkit (e.g., 3dDeconvolve from AFNI), check out the [guide for adding new interfaces to Nipype][link_new_interfaces].
58
66
59
67
To confirm that your changes worked as intended, [clone your fork][link_cloning] to create a local directory.
60
-
In this local directory, run `python setup.py develop`.
61
-
This will add your version of nipype to your local python environment.
68
+
In this local directory, run `pip install -e .[dev]`.
69
+
This will add your version of nipype to your local python environment and
70
+
install dependencies needed for development.
62
71
63
72
Then, in this local nipype directory, run `make check-before-commit`. If you get no errors, you're ready to submit your changes!
0 commit comments