-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from neurodata/develop
Version 0.2.0
- Loading branch information
Showing
2,643 changed files
with
43,737 additions
and
38,020 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,27 +13,23 @@ to record your changes in Git, push the changes to your branch with: | |
```git pull origin master``` | ||
```git push origin my-feature``` | ||
|
||
The repository is structured according to | ||
![this model](https://nvie.com/img/[email protected]) | ||
([source](https://nvie.com/posts/a-successful-git-branching-model/)) | ||
|
||
## Pull Request Checklist | ||
We recommended that your contribution complies with the following rules before you submit a pull request: | ||
|
||
Give your pull request a helpful title that summarises what your contribution does. In some cases Fix <ISSUE TITLE> is enough. Fix #<ISSUE NUMBER> is not enough. | ||
|
||
All public methods should have informative docstrings with sample usage presented as doctests when appropriate. | ||
|
||
At least one paragraph of narrative documentation with links to references in the literature (with PDF links when possible) and the example. | ||
|
||
All functions and classes must have unit tests. These should include, at the very least, type checking and ensuring correct computation/outputs. | ||
|
||
Ensure all tests are passing locally using pytest. Install the necessary packages by: | ||
|
||
- [ ] Give your pull request a helpful title that summarises what your contribution does. In some cases Fix <ISSUE TITLE> is enough. Fix #<ISSUE NUMBER> is not enough. | ||
- [ ] All public methods should have informative docstrings with sample usage presented as doctests when appropriate. | ||
- [ ] At least one paragraph of narrative documentation with links to references in the literature (with PDF links when possible) and the example. | ||
- [ ] All functions and classes must have unit tests. These should include, at the very least, type checking and ensuring correct computation/outputs. | ||
- [ ] Ensure all tests are passing locally using pytest. Install the necessary packages by: | ||
```pip install pytest pytest-cov``` | ||
then run | ||
|
||
```pytest``` | ||
or you can run pytest on a single test file by | ||
|
||
```pytest path/to/test.py``` | ||
Run an autoformatter. We use black and would like for you to format all files using black. You can run the following lines to format your files. | ||
|
||
- [ ] Run an autoformatter. We use black and would like for you to format all files using black. You can run the following lines to format your files. | ||
```pip install black``` | ||
```black path/to/module.py``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import brainlit.algorithms.connect_fragments | ||
import brainlit.algorithms.generate_fragments | ||
|
||
from brainlit.algorithms.connect_fragments import * | ||
from brainlit.algorithms.generate_fragments import * |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.