-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:lebigot/uncertainties
- Loading branch information
Showing
8 changed files
with
105 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
# Common options for distutils/setuptools's setup(): | ||
setup_options = dict( | ||
name='uncertainties', | ||
version='3.1.5', | ||
version='3.1.7', | ||
author='Eric O. LEBIGOT (EOL)', | ||
author_email='[email protected]', | ||
url='http://uncertainties-python-package.readthedocs.io/', | ||
|
@@ -131,7 +131,8 @@ | |
Main changes: | ||
- 3.1.5: added a "p" formatting option, that makes sure that there are always | ||
- 3.1.6: The pretty-print and LaTeX format can now be customized. | ||
- 3.1.5: Added a "p" formatting option, that makes sure that there are always | ||
parentheses around the … ± … part of printed numbers. | ||
- 3.1.4: Python 2.7+ is now required. | ||
- 3.1.2: Fix for NumPy 1.17 and ``unumpy.ulinalg.pinv()``. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -226,7 +226,7 @@ | |
from .core import __all__ # For a correct help(uncertainties) | ||
|
||
# Numerical version: | ||
__version_info__ = (3, 1, 5) | ||
__version_info__ = (3, 1, 6) | ||
__version__ = '.'.join(map(str, __version_info__)) | ||
|
||
__author__ = 'Eric O. LEBIGOT (EOL) <[email protected]>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters