File tree Expand file tree Collapse file tree 2 files changed +37
-10
lines changed
Expand file tree Collapse file tree 2 files changed +37
-10
lines changed Original file line number Diff line number Diff line change 1- Version history
2- ===============
1+ Change Log
2+ ===================
3+
4+ 3.2.0 2024-June-02
5+ -----------------------
6+
7+ Version 3.2.0 is the first release of Uncertainties in nearly two years and the
8+ first minor release in over five years. It marks the beginning of an effort to
9+ refresh and update the project with a new and expanded team of maintainers.
10+
11+ * Main Changes
12+
13+ - Moved code development to lmfit organization, with 4 maintainers.
14+ - Update documentation.
15+ - Drop future dependency. Uncertainties now has no external dependencies when
16+ not using Numpy integration (Drop official support for Python versions before 3.8 #200).
17+ - Drop support for Python versions before 3.8, including Python 2 (Drop official support for Python versions before 3.8 #200)
18+ - remove 1to2 and deprecations (remove 1to2 and depreciations #214)
19+
20+ * Developer related changes
21+
22+ - Moved from setup.py to pyproject.toml (Transition from setup.py to pyproject.toml #199)
23+ - Move tests to tests folder (Move tests to tests folder #216)
24+ - Update unumpy test to be compatible with numpy 2
25+ - Mark docstrings with backslashes as raw strings in tests (Mark docstrings with backslashes as raw strings #226)
26+
27+
28+
29+ Older Version history
30+ ------------------------
331
432Main changes:
5- - 3.2.0: Python 2 code removed. Python 3.8+ supported officially. Earlier versions may also work. Transitioned to pyproject.toml. Updated documentation.
633- 3.1.6: The pretty-print and LaTeX format can now be customized.
734- 3.1.5: Added a "p" formatting option, that makes sure that there are always
835 parentheses around the … ± … part of printed numbers.
Original file line number Diff line number Diff line change 212212- This package contains tests. They can be run either manually or
213213automatically with the nose unit testing framework (nosetests).
214214
215- (c) 2009-2016 by Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>.
216- Please send feature requests, bug reports, or feedback to this address.
215+ (c) 2009-2024 by Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>.
217216
218- Please support future development by donating $10 or more through PayPal!
217+ Please use the Github project at https://github.com/lmfit/uncertainties
218+ for bug reports, feature requests, or feedback.
219219
220- This software is released under a dual license. (1) The BSD license.
221- (2) Any other license, as long as it is obtained from the original
222- author. '''
220+
221+ This software is released under the BSD license.
222+ '''
223223
224224from builtins import map
225225from .core import *
226226from .core import __all__ # For a correct help(uncertainties)
227227
228228# Numerical version:
229- __version_info__ = (3 , 1 , 7 )
229+ __version_info__ = (3 , 2 , 0 )
230230__version__ = '.' .join (map (str , __version_info__ ))
231231
232232__author__ = 'Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>'
You can’t perform that action at this time.
0 commit comments