Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.06 KB

ISSUE_TEMPLATE.md

File metadata and controls

21 lines (18 loc) · 1.06 KB

Description

[Please provide a general introduction to the issue/proposal.]

[If reporting a bug, attach the entire traceback from Python and follow the way to reproduce below] [If proposing an enhancement/new feature, provide links to related articles, reference examples, etc.]

Way to reproduce

[If reporting a bug, please include the following important information:]

  • Code example
  • Relevant images (if any)
  • Operating system and version (run python -c "import platform; print(platform.platform())")
  • Python version (run python -c "import sys; print("Python", sys.version)")
  • dipy version (run python -c "import dipy; print(dipy.__version__)")
  • dependency version (numpy, scipy, nibabel, h5py, cvxpy, vtk)
    • import numpy; print("NumPy", numpy.version)
    • import scipy; print("SciPy", scipy.version)
    • import nibabel; print("Nibabel", nibabel.version)
    • import h5py; print("H5py", h5py.version)
    • import cvxpy; print("Cvxpy", cvxpy.version)
    • import vtk; print(vtk.vtkVersion.GetVTKSourceVersion())