Skip to content

Commit

Permalink
Merge branch 'main' into fmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Oct 24, 2024
2 parents d5a5f84 + 8cba0aa commit 476a5cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
type=semver,pattern={{version}}
- name: Build and push Docker image
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"fmriprep @ git+https://github.com/nipreps/fmriprep.git@master",
"nipype >= 1.8.5",
"nireports @ git+https://github.com/nipreps/nireports.git@main",
"nitransforms == 23.0.1",
"nitransforms >= 24.0.2",
"niworkflows @ git+https://github.com/nipreps/niworkflows.git@master",
"pybids >= 0.15.6",
"sdcflows @ git+https://github.com/nipreps/sdcflows.git@master",
Expand Down
4 changes: 2 additions & 2 deletions src/fmripost_aroma/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,9 @@ def parse_args(args=None, namespace=None):
config.from_dict(vars(opts), init=['nipype'])

if not config.execution.notrack:
import pkgutil
import importlib.util

if pkgutil.find_loader('sentry_sdk') is None:
if importlib.util.find_spec('sentry_sdk') is None:
config.execution.notrack = True
config.loggers.cli.warning('Telemetry disabled because sentry_sdk is not installed.')
else:
Expand Down

0 comments on commit 476a5cf

Please sign in to comment.