Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
export TEMPLATEFLOW_USE_DATALAD=on
python -m pytest \
--junit-xml=~/tests/datalad.xml --cov templateflow --doctest-modules \
templateflow/api.py
templateflow/client.py
coverage run --append -m templateflow.cli config
coverage run --append -m templateflow.cli ls MNI152NLin2009cAsym --suffix T1w
Expand Down
1 change: 1 addition & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ Information on specific functions, classes, and methods.
.. toctree::

api/templateflow.cli
api/templateflow.client
api/templateflow.api
api/templateflow.conf
1 change: 1 addition & 0 deletions docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ dependencies:
- nibabel==3.2.2
- nipreps-versions==1.0.3
- pandas==1.4.2
- platformdirs
- pybids==0.15.2
- sqlalchemy==1.3.24
- hatchling
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"acres >= 0.5.0",
"platformdirs >= 4.0",
"pybids >= 0.15.2",
"requests",
"tqdm",
Expand Down
2 changes: 2 additions & 0 deletions templateflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@
del PackageNotFoundError

from templateflow import api
from templateflow.client import TemplateFlowClient
from templateflow.conf import update

__all__ = [
'__copyright__',
'__packagename__',
'__version__',
'TemplateFlowClient',
'api',
'update',
]
Loading
Loading