pkgsrc/math/py-lmfit/Makefile
adam 6ec6704351 py-lmfit: updated to 0.9.12
Version 0.9.12 Release Notes

New features:
- SkewedVoigtModel was added as built-in model
- Parameter uncertainties and correlations are reported for least_squares
- Plotting of complex-valued models is now handled in ModelResult class
- A model's independent variable is allowed to be an object
- Added usersyms to Parameters() initialization to make it easier to add custom functions and symbols
- the numdifftools package can be used to calculate parameter uncertainties and correlations for all solvers that do not natively support this
- emcee can now be used as method keyword-argument to Minimizer.minimize and minimize function, which allows for using emcee in the Model class

(Bug)fixes:
- asteval errors are now flushed after raising
- max_time and evaluation time for ExpressionModel increased to 1 hour
- loading a saved ModelResult now restores all attributes
- development versions of scipy and emcee are now supported
- ModelResult.eval() do no longer overwrite the userkws dictionary
- running the test suite requires pytest only
- improved FWHM calculation for VoigtModel
2018-12-03 20:41:44 +00:00

21 lines
667 B
Makefile

# $NetBSD: Makefile,v 1.6 2018/12/03 20:41:44 adam Exp $
DISTNAME= lmfit-0.9.12
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=l/lmfit/}
MAINTAINER= prlw1@cam.ac.uk
HOMEPAGE= http://lmfit.github.io/lmfit-py/
COMMENT= Least-squares minimization with bounds and constraints
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-asteval>=0.9.12:../../math/py-asteval
DEPENDS+= ${PYPKGPREFIX}-numpy>=1.10:../../math/py-numpy
DEPENDS+= ${PYPKGPREFIX}-scipy>=0.17:../../math/py-scipy
DEPENDS+= ${PYPKGPREFIX}-six>=1.11.0:../../lang/py-six
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"