Skip to content

Commit

Permalink
build: limit to iminuit 1
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Jan 4, 2021
1 parent 9ee759c commit 1ed8422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ install_requires =
amplitf
expertsystem >= 0.6.4
iminuit
numpy
numpy < 2.0
pandas
phasespace >= 1.2.0
PyYAML
Expand Down
2 changes: 1 addition & 1 deletion src/tensorwaves/optimizer/minuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __func(pars: list) -> float:
)
return estimator_val

minuit = Minuit.from_array_func( # pylint: disable=E1101
minuit = Minuit.from_array_func(
__func,
list(parameters.values()),
error=[0.1 * x if x != 0.0 else 0.1 for x in parameters.values()],
Expand Down

0 comments on commit 1ed8422

Please sign in to comment.