Skip to content

Commit

Permalink
Prepare 1.5.4 (#537)
Browse files Browse the repository at this point in the history
* fixed sdist package
* added missing changes in 1.5.3 to changelog
  • Loading branch information
HDembinski authored Nov 21, 2020
1 parent 64acac1 commit 56c34b8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .ci/azure-pipeline-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
displayName: Check manifest
- script: python setup.py sdist
displayName: Prepare sdist
- script: pip install dist/*
displayName: Check sdist
- template: azure-wheel-helpers/azure-publish-dist.yml

- job: ManyLinux
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
recursive-include src/iminuit *.h *.cpp *.pyx *.pxi *.py
recursive-include tutorial *.py *.ipynb *.pyx
recursive-include extern/Minuit2 *
recursive-exclude tutorial/.ipynb_checkpoints *
recursive-include extern/root/math/minuit2/inc *.h
recursive-include extern/root/math/minuit2/src *.cxx
include *.py
include README.rst
include LICENSE
Expand Down
22 changes: 22 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,32 @@
Changelog
=========

1.5.4 (November 21, 2020)
--------------------------

- Fixed broken sdist package in 1.5.3

1.5.3 (November 19, 2020)
--------------------------

Fixes
~~~~~
- Fixed a crash when throw_nan=True is used and the throw is triggered
- Add python_requires (#496) by @henryiii
- Fixed buggy display of text matrix if npar != 2 (#493)

Other
~~~~~
- Switch extern Minuit2 repo to official root repo (#500), ROOT state: a5d880a434
- Add ngrad and ngrad_total to FMin display, rename ncalls to nfcn_total (#489)
- Use __getattr__ to hide deprecated interface from Python help() (#491)
- Improvements to tutorials by @giammi56
- Show number of gradient calls in FMin display (if nonzero) instead of errordef value

Deprecated
~~~~~~~~~~
- Minuit.ncalls, use Minuit.nfcn instead
- Minuit.ngrads, use Minuit.ngrad instead

1.5.2 (September 24, 2020)
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/iminuit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.3"
__version__ = "1.5.4"

0 comments on commit 56c34b8

Please sign in to comment.