-
-
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.
- Loading branch information
Showing
6 changed files
with
77 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ | |
|
||
distutils.core.setup( | ||
name='uncertainties', | ||
version='2.4', | ||
version='2.4.1', | ||
author='Eric O. LEBIGOT (EOL)', | ||
author_email='[email protected]', | ||
url='http://pythonhosted.org/uncertainties/', | ||
|
@@ -168,6 +168,11 @@ | |
Main changes: | ||
- 2.4.1: In ``uncertainties.umath``, functions ``ceil()``, ``floor()``, \ | ||
``isinf()``, ``isnan()`` and ``trunc()`` now return values of \ | ||
the same type as the corresponding ``math`` module function \ | ||
(instead of generally returning a value with a zero uncertainty \ | ||
``...+/-0``). | ||
- 2.4: Extensive support for the formatting_ of numbers with uncertainties. \ | ||
A zero uncertainty is now explicitly displayed as the integer 0. \ | ||
The new formats are generally understood by ``ufloat_fromstr()``. \ | ||
|
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 |
---|---|---|
|
@@ -243,7 +243,7 @@ | |
import inspect | ||
|
||
# Numerical version: | ||
__version_info__ = (2, 4) | ||
__version_info__ = (2, 4, 1) | ||
__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
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