-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update CHANGES.rst and __init__.py for v3.2.0 (#229)
update CHANGES and set 3.2.0 as version number in `__init__.py`
- Loading branch information
Showing
2 changed files
with
37 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,21 +212,21 @@ | |
- This package contains tests. They can be run either manually or | ||
automatically with the nose unit testing framework (nosetests). | ||
(c) 2009-2016 by Eric O. LEBIGOT (EOL) <[email protected]>. | ||
Please send feature requests, bug reports, or feedback to this address. | ||
(c) 2009-2024 by Eric O. LEBIGOT (EOL) <[email protected]>. | ||
Please support future development by donating $10 or more through PayPal! | ||
Please use the Github project at https://github.com/lmfit/uncertainties | ||
for bug reports, feature requests, or feedback. | ||
This software is released under a dual license. (1) The BSD license. | ||
(2) Any other license, as long as it is obtained from the original | ||
author.''' | ||
This software is released under the BSD license. | ||
''' | ||
|
||
from builtins import map | ||
from .core import * | ||
from .core import __all__ # For a correct help(uncertainties) | ||
|
||
# Numerical version: | ||
__version_info__ = (3, 1, 7) | ||
__version_info__ = (3, 2, 0) | ||
__version__ = '.'.join(map(str, __version_info__)) | ||
|
||
__author__ = 'Eric O. LEBIGOT (EOL) <[email protected]>' |