Skip to content

Commit

Permalink
BF+ENH: add pyyaml to depends and sort all depends
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Mar 29, 2022
1 parent 40aeffc commit 6ce5422
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions heudiconv/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,30 @@
PYTHON_REQUIRES = ">=3.6"

REQUIRES = [
'nibabel',
'pydicom',
'nipype >=1.2.3',
'dcmstack>=0.8',
'etelemetry',
'filelock>=3.0.12',
'nibabel',
'nipype >=1.2.3',
'pydicom',
'pyyaml',
]

TESTS_REQUIRES = [
'six',
'pytest',
'inotify',
'mock',
'pytest',
'six',
'tinydb',
'inotify',
]

MIN_DATALAD_VERSION = '0.13.0'
EXTRA_REQUIRES = {
'tests': TESTS_REQUIRES,
'datalad': ['datalad >=%s' % MIN_DATALAD_VERSION],
'extras': [
'duecredit', # optional dependency
], # Requires patched version ATM ['dcmstack'],
'datalad': ['datalad >=%s' % MIN_DATALAD_VERSION]
'tests': TESTS_REQUIRES,
}

# Flatten the lists
Expand Down

0 comments on commit 6ce5422

Please sign in to comment.