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
+ ------------------------
3
31
4
32
Main 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.
6
33
- 3.1.6: The pretty-print and LaTeX format can now be customized.
7
34
- 3.1.5: Added a "p" formatting option, that makes sure that there are always
8
35
parentheses around the … ± … part of printed numbers.
Original file line number Diff line number Diff line change 212
212
- This package contains tests. They can be run either manually or
213
213
automatically with the nose unit testing framework (nosetests).
214
214
215
- (c) 2009-2016 by Eric O. LEBIGOT (EOL) <[email protected] >.
216
- Please send feature requests, bug reports, or feedback to this address.
215
+ (c) 2009-2024 by Eric O. LEBIGOT (EOL) <[email protected] >.
217
216
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.
219
219
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
+ '''
223
223
224
224
from builtins import map
225
225
from .core import *
226
226
from .core import __all__ # For a correct help(uncertainties)
227
227
228
228
# Numerical version:
229
- __version_info__ = (3 , 1 , 7 )
229
+ __version_info__ = (3 , 2 , 0 )
230
230
__version__ = '.' .join (map (str , __version_info__ ))
231
231
232
232
__author__ = 'Eric O. LEBIGOT (EOL) <[email protected] >'
You can’t perform that action at this time.
0 commit comments