Skip to content

Commit a1d4151

Browse files
authored
Merge pull request #90 from deepanshs/djs/release_3_1
v3.1: doc and version update
2 parents 9bb390d + 5d5b9e1 commit a1d4151

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
v0.3.1
2+
------
3+
4+
What's new!
5+
'''''''''''
26

37
- Simplified plot_3d function
8+
- Replace fortran code with numba jit python version.
49

510
v0.3.0
611
------
712

813
What's new!
914
'''''''''''
1015

11-
- Added T1, T2 relaxation inversion kerenel.
16+
- Added T1, T2 relaxation inversion kernel.
1217

1318
v0.2.0
1419
------

mrinversion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.1.dev1"
1+
__version__ = "0.3.1"

mrinversion/kernel/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
"""Initialization of the kernel module."""
12
from mrinversion.kernel.relaxation import T1 # NOQA
23
from mrinversion.kernel.relaxation import T2 # NOQA

mrinversion/kernel/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Base classes for kernel generation."""
12
from copy import deepcopy
23

34
import csdmpy as cp

mrinversion/tests/fista_intergration_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Integration tests for FISTA implementation."""
12
import csdmpy as cp
23
import numpy as np
34

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ addopts =
1616
omit =
1717
setup.py
1818
mrinversion/utils.py
19+
mrinversion/linear_model/fista/__init__.py

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
"""Setup for mrinversion package."""
12
from os.path import abspath
23
from os.path import dirname
34
from os.path import join
45
from setuptools import find_packages, setup
56

67

7-
with open("mrinversion/__init__.py") as f:
8+
with open("mrinversion/__init__.py", encoding="utf-8") as f:
89
for line in f.readlines():
910
if "__version__" in line:
1011
before_keyword, keyword, after_keyword = line.partition("=")
@@ -32,7 +33,7 @@
3233
"Python based statistical learning of NMR tensor and relaxation parameters "
3334
"distribution."
3435
),
35-
long_description=open(join(module_dir, "README.md")).read(),
36+
long_description=open(join(module_dir, "README.md"), encoding="utf-8").read(),
3637
long_description_content_type="text/markdown",
3738
author="Deepansh J. Srivastava",
3839
author_email="deepansh2012@gmail.com",

0 commit comments

Comments
 (0)