Skip to content

Commit

Permalink
Merge branch 'hotfix-0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sametz committed May 10, 2020
2 parents 905f5bf + 2ff2f84 commit 7f770a1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ the author interprets the terms below as follows:
API is stable.
The package is available on PyPI (and perhaps conda).

0.5.1 - 2020-05-10 (beta release)
---------------------------------
Fixed
^^^^^
* unneccessary print statements removed rom qm.py (Issue #5)

0.5.0 - 2020-03-29 (beta release)
---------------------------------
Changed
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Click the "**Launch Binder**" link above to see how **nmrsim** can be used in Ju

`Documentation on Read the Docs <https://nmrsim.readthedocs.io/>`_

nmrsim (version 0.5.0 beta)
nmrsim (version 0.5.1 beta)
============================

**nmrsim** is a Python library for the simulation of solution-state nuclear magnetic resonance (NMR) spectra.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = '0.5'
# The full version, including alpha/beta/rc tags
release = '0.5.0-beta'
release = '0.5.1-beta'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/introduction.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Introduction to nmrsim v0.5.0 (beta)
Introduction to nmrsim v0.5.1 (beta)
=====================================

**nmrsim** is a library of tools for simulating NMR spectra, starting from
Expand Down
2 changes: 1 addition & 1 deletion nmrsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@

from ._classes import Multiplet, SpinSystem, Spectrum # noqa: F401

__version__ = '0.5.0'
__version__ = '0.5.1'
2 changes: 0 additions & 2 deletions nmrsim/qm.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,7 @@ def _tm_cache(nspins):
# print('path to init: ', init_path)
# bin_path = init_path.parent
bin_path = _bin_path()
print('path to bin: ', bin_path)
path = bin_path.joinpath(filename)
print('searching for: ', path)
try:
T_sparse = sparse.load_npz(path)
return T_sparse
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="nmrsim",
version="0.5.0",
version="0.5.1",
author="Geoffrey M. Sametz",
author_email="sametz@udel.edu",
description="A library for simulating nuclear magnetic resonance (NMR) spectra.",
Expand Down

0 comments on commit 7f770a1

Please sign in to comment.