generated from nipype/pydra-tasks-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/no_mutate_on_run
- Loading branch information
Showing
15 changed files
with
268 additions
and
2,630 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# EditorConfig <editorconfig.org> | ||
|
||
# This is the top-most EditorConfig file. | ||
root = true | ||
|
||
# Use Unix-style newlines with a newline ending for all files. | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
# Use 4-space indentation for Python. | ||
[*.py] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
# Use 4-space indentation for TOML. | ||
[*.toml] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
# Use 2-space indentation for YAML. | ||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
indent_style = space |
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 |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Generated by flit_scm | ||
_version.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,52 @@ | ||
0.1.0 (9 April 2021) | ||
==================== | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.3.0] - 2024-03-22 | ||
|
||
### Changed | ||
|
||
* Pydra 0.23+ compatibility | ||
* Drop Python 3.7 compatibility, test Python 3.12 | ||
* Updates to CI workflows | ||
|
||
## [0.2.2] – 2022-11-22 | ||
|
||
### Changed | ||
|
||
- Set Nipype developers as maintainers. | ||
|
||
## [0.2.1] – 2022-11-22 | ||
|
||
### Added | ||
|
||
- Publish package automatically on release. | ||
|
||
### Fixed | ||
|
||
- Update project metadata. | ||
|
||
## [0.2.0] – 2022-11-21 | ||
|
||
### Added | ||
|
||
- Expose `Nipype1Task` to the root of the package. | ||
|
||
### Changed | ||
|
||
- Use modern `attrs` namespace instead of `attr`. | ||
- Migrate project to `flit_scm`. | ||
|
||
### Fixed | ||
|
||
- Keep collection types in wrapped interfaces. | ||
|
||
## [0.1.0] – 2021-04-09 | ||
|
||
- Initial release for PyPI | ||
|
||
[0.3.0]: https://github.com/nipype/pydra-nipype1/compare/0.2.2...0.3.0 | ||
[0.2.2]: https://github.com/nipype/pydra-nipype1/compare/0.2.1...0.2.2 | ||
[0.2.1]: https://github.com/nipype/pydra-nipype1/compare/0.2.0...0.2.1 | ||
[0.2.0]: https://github.com/nipype/pydra-nipype1/compare/0.1.0...0.2.0 | ||
[0.1.0]: https://github.com/nipype/pydra-nipype1/releases/tag/0.1.0 |
This file was deleted.
Oops, something went wrong.
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,4 +1,13 @@ | ||
from ._version import get_versions | ||
""" | ||
>>> from pydra import ShellCommandTask | ||
>>> import pydra.tasks.nipype1 | ||
""" | ||
|
||
__version__ = get_versions()["version"] | ||
del get_versions | ||
try: | ||
from ._version import __version__ | ||
except ImportError: | ||
pass | ||
|
||
from .utils import Nipype1Task | ||
|
||
__all__ = ["Nipype1Task"] |
Oops, something went wrong.