Skip to content

Commit

Permalink
update CHANGES.rst and __init__.py for v3.2.0 (#229)
Browse files Browse the repository at this point in the history
update CHANGES and set 3.2.0 as version number in `__init__.py`
  • Loading branch information
newville authored Jun 2, 2024
1 parent 21352bb commit a4a48b3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 10 deletions.
33 changes: 30 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
Version history
===============
Change Log
===================

3.2.0 2024-June-02
-----------------------

Version 3.2.0 is the first release of Uncertainties in nearly two years and the
first minor release in over five years. It marks the beginning of an effort to
refresh and update the project with a new and expanded team of maintainers.

* Main Changes

- Moved code development to lmfit organization, with 4 maintainers.
- Update documentation.
- Drop future dependency. Uncertainties now has no external dependencies when
not using Numpy integration (Drop official support for Python versions before 3.8 #200).
- Drop support for Python versions before 3.8, including Python 2 (Drop official support for Python versions before 3.8 #200)
- remove 1to2 and deprecations (remove 1to2 and depreciations #214)

* Developer related changes

- Moved from setup.py to pyproject.toml (Transition from setup.py to pyproject.toml #199)
- Move tests to tests folder (Move tests to tests folder #216)
- Update unumpy test to be compatible with numpy 2
- Mark docstrings with backslashes as raw strings in tests (Mark docstrings with backslashes as raw strings #226)



Older Version history
------------------------

Main changes:
- 3.2.0: Python 2 code removed. Python 3.8+ supported officially. Earlier versions may also work. Transitioned to pyproject.toml. Updated documentation.
- 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.
Expand Down
14 changes: 7 additions & 7 deletions uncertainties/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]>'

0 comments on commit a4a48b3

Please sign in to comment.