Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
v0.3.1
------

What's new!
'''''''''''

- Simplified plot_3d function
- Replace fortran code with numba jit python version.

v0.3.0
------

What's new!
'''''''''''

- Added T1, T2 relaxation inversion kerenel.
- Added T1, T2 relaxation inversion kernel.

v0.2.0
------
Expand Down
2 changes: 1 addition & 1 deletion mrinversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1.dev1"
__version__ = "0.3.1"
1 change: 1 addition & 0 deletions mrinversion/kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Initialization of the kernel module."""
from mrinversion.kernel.relaxation import T1 # NOQA
from mrinversion.kernel.relaxation import T2 # NOQA
1 change: 1 addition & 0 deletions mrinversion/kernel/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Base classes for kernel generation."""
from copy import deepcopy

import csdmpy as cp
Expand Down
1 change: 1 addition & 0 deletions mrinversion/tests/fista_intergration_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Integration tests for FISTA implementation."""
import csdmpy as cp
import numpy as np

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ addopts =
omit =
setup.py
mrinversion/utils.py
mrinversion/linear_model/fista/__init__.py
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
"""Setup for mrinversion package."""
from os.path import abspath
from os.path import dirname
from os.path import join
from setuptools import find_packages, setup


with open("mrinversion/__init__.py") as f:
with open("mrinversion/__init__.py", encoding="utf-8") as f:
for line in f.readlines():
if "__version__" in line:
before_keyword, keyword, after_keyword = line.partition("=")
Expand Down Expand Up @@ -32,7 +33,7 @@
"Python based statistical learning of NMR tensor and relaxation parameters "
"distribution."
),
long_description=open(join(module_dir, "README.md")).read(),
long_description=open(join(module_dir, "README.md"), encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Deepansh J. Srivastava",
author_email="[email protected]",
Expand Down