Skip to content

Commit cf62963

Browse files
committed
uptodate
2 parents d6b46a1 + 61cf3bb commit cf62963

File tree

96 files changed

+17258
-3024
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+17258
-3024
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
pydra/tasks/fsl/_version.py export-subst
2+
*.nii.gz filter=lfs diff=lfs merge=lfs -text
3+
*.nii* filter=lfs diff=lfs merge=lfs -text

.github/workflows/fsl_docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v2
13+
with:
14+
lfs: true
1315
- name: Pull docker image
1416
run: |
1517
docker pull $DOCKER_IMAGE

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ jobs:
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494
- name: Install build tools
95-
run: python -m pip install --upgrade pip setuptools wheel twine
95+
run: python -m pip install --upgrade pip build twine
9696
- name: Build source and wheel distributions
97-
run: python setup.py sdist bdist_wheel
97+
run: python -m build
9898
- name: Check distributions
9999
run: twine check dist/*
100100
- uses: actions/upload-artifact@v2

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*.DS_Store
1+
.DS_Store
22
# Byte-compiled / optimized / DLL files
33
__pycache__/
44
*.py[cod]

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.3.0
5+
rev: v4.4.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
99
- id: check-yaml
1010
- id: check-added-large-files
1111
- repo: https://github.com/psf/black
12-
rev: 22.6.0
12+
rev: 23.1.0
1313
hooks:
1414
- id: black
1515
exclude: (_version\.py|versioneer\.py)$

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

pydra/tasks/fsl/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
"""
88

9-
from ._version import get_versions
10-
11-
__version__ = get_versions()['version']
12-
del get_versions
9+
try:
10+
from ._version import __version__
11+
except ImportError:
12+
pass

0 commit comments

Comments
 (0)