Skip to content

Commit

Permalink
Merge branch 'release-0.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
mcvaneede committed Oct 22, 2014
2 parents 83692b2 + d3cb045 commit db32f96
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
New in Version 0.1.5
====================
* fixes cython/numpy compilation issues with anaconda-2.1.0

New in Version 0.1.4
====================
* added rotational_minctracc.py
Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

import numpy

setup(name="python-stuffs",
version='0.1.4',
scripts=["python/TFCE",
"python/smooth_vector",
"python/measure_xcorr",
"python/pmincaverage",
"python/minc_label_ops",
"python/compute_values_across_segmentation",
"python/volumes_from_labels_only",
version='0.1.5',
scripts=["python/TFCE",
"python/smooth_vector",
"python/measure_xcorr",
"python/pmincaverage",
"python/minc_label_ops",
"python/compute_values_across_segmentation",
"python/volumes_from_labels_only",
"python/voxel_vote",
"python/replace_label_with_nearest_valid_label",
"python/rotational_minctracc.py"],
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("cython_functions", ["python/cython_functions.pyx"])]
ext_modules = [Extension("cython_functions", ["python/cython_functions.pyx"], include_dirs=[numpy.get_include()])]
)

0 comments on commit db32f96

Please sign in to comment.