Skip to content

Commit 35acfb6

Browse files
committed
Merge tag 'v0.5.2' into debian
* tag 'v0.5.2': Install test data Adjusted CHANGELOG
2 parents fa89abd + 7a60c0d commit 35acfb6

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
A variety of bugfixes
1010

11-
### Added
1211
### Changed
13-
1412
- Reproin heuristic: `__dup` indices would now be assigned incrementally
1513
individually per each sequence, so there is a chance to properly treat
1614
associate for multi-file (e.g. `fmap`) sequences
@@ -19,20 +17,16 @@ A variety of bugfixes
1917
testing of an installed heudiconv
2018
- Protocol name will also be accessed from private Siemens
2119
csa.tProtocolName header field if not present in public one
20+
- nipype>=0.12.0 is required now
2221

23-
### Deprecated
2422
### Fixed
25-
2623
- Multiple files produced by dcm2niix are first sorted to guarantee
2724
correct order e.g. of magnitude files in fieldmaps, which otherwise
2825
resulted in incorrect according to BIDS ordering of them
2926
- Aggregated top level .json files now would contain only the fields
3027
with the same values from all scanned files. In prior versions,
3128
those files were not regenerated after an initial conversion
32-
33-
### Removed
34-
### Security
35-
29+
- Unicode handling in anonimization scripts
3630

3731
## [0.5.1] - 2018-07-05
3832
Bugfix release

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ def findsome(subdir, extensions):
5454
]},
5555
install_requires=ldict['REQUIRES'],
5656
extras_require=ldict['EXTRA_REQUIRES'],
57-
)
57+
package_data={
58+
'heudiconv.tests': [op.join('data', '*'), op.join('data', '*', '*')],
59+
}
60+
)
5861

5962

6063
if __name__ == '__main__':

0 commit comments

Comments
 (0)