Skip to content

Commit

Permalink
Create version 1.2.0 with Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kjamison committed Jan 27, 2020
1 parent 7cb988d commit 4923f70
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ for use within the [HCP Minimal Preprocessing Pipelines][HCP Pipelines].

gradunwarp needs

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

## License

Expand Down
2 changes: 1 addition & 1 deletion gradunwarp/core/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
import logging

VERSION = 'HCP-1.0.3'
VERSION = 'HCP-1.2.0'

usage = '''
gradient_unwarp infile outfile manufacturer -g <coefficient file> [optional arguments]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def configuration(parent_package='', top_path=None):
return config

setup(name='gradunwarp',
version = 'HCP-1.0.3',
version = 'HCP-1.2.0',
description = 'HCP version of Gradient Unwarping Package for Python/Numpy',
author = 'Human Connectome Project',
py_modules = mods,
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.0
v1.2.0

0 comments on commit 4923f70

Please sign in to comment.