Skip to content

Commit 4923f70

Browse files
committed
Create version 1.2.0 with Python 3 compatibility
1 parent 7cb988d commit 4923f70

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ for use within the [HCP Minimal Preprocessing Pipelines][HCP Pipelines].
1717

1818
gradunwarp needs
1919

20-
* Python (>=2.7)
20+
* Python (>=2.7 or 3.x)
2121
* [Numpy][Numpy] (preferably, the latest)
2222
* [Scipy][Scipy] (preferably, the latest)
2323
* Numpy devel package (to compile external modules written in C)
@@ -122,6 +122,7 @@ Some thoughts:
122122
* slice by slice processing
123123
* x-y flip bug fix
124124
* force 32-bit output in 64-bit systems
125+
* modified for Python3 compatibility
125126

126127
## License
127128

gradunwarp/core/globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
77
import logging
88

9-
VERSION = 'HCP-1.0.3'
9+
VERSION = 'HCP-1.2.0'
1010

1111
usage = '''
1212
gradient_unwarp infile outfile manufacturer -g <coefficient file> [optional arguments]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def configuration(parent_package='', top_path=None):
4141
return config
4242

4343
setup(name='gradunwarp',
44-
version = 'HCP-1.0.3',
44+
version = 'HCP-1.2.0',
4545
description = 'HCP version of Gradient Unwarping Package for Python/Numpy',
4646
author = 'Human Connectome Project',
4747
py_modules = mods,

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.1.0
1+
v1.2.0

0 commit comments

Comments
 (0)