-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
68 additions
and
23 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nibabel |
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,12 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --strip-extras requirements.in | ||
# | ||
nibabel==5.2.1 | ||
# via -r requirements.in | ||
numpy==1.26.4 | ||
# via nibabel | ||
packaging==24.0 | ||
# via nibabel |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
; See https://tox.wiki/en | ||
[tox] | ||
requires = | ||
tox>=4 | ||
; run lint by default when just calling "tox" | ||
env_list = lint | ||
|
||
; ENVIRONMENTS | ||
; ------------ | ||
[style] | ||
description = common environment for style checkers (rely on pre-commit hooks) | ||
skip_install = true | ||
deps = | ||
pre-commit | ||
|
||
; COMMANDS | ||
; -------- | ||
[testenv:lint] | ||
description = install pre-commit hooks and run all linters and formatters | ||
skip_install = true | ||
deps = | ||
{[style]deps} | ||
commands = | ||
pre-commit install | ||
pre-commit run --all-files --show-diff-on-failure {posargs:} | ||
|
||
[testenv:update_dependencies] | ||
description = update requirements.txt | ||
skip_install = true | ||
deps = | ||
pip-tools | ||
commands = | ||
pip-compile --strip-extras requirements.in {posargs:} |