Version 0.9.13 Release Notes New features: Clearer warning message in fit reports when uncertainties should but cannot be estimated, including guesses of which Parameters to examine SplitLorenztianModel and split_lorentzian function HTML representations for Parameter, MinimizerResult, and Model so that they can be printed better with Jupyter support parallelization for differential evolution Bug fixes: delay import of matplotlib (and so, the selection of its backend) as late as possible fix for saving, loading, and reloading ModelResults fix to leastsq to report the best-fit values, not the values tried last fix synchronization of all parameter values on Model.guess() improve deprecation warnings for outdated nan_policy keywords fix for edge case in gformat() Project managements: using pre-commit framework to improve and enforce coding style added code coverage report to github main page updated docs, github templates, added several tests. dropped support and testing for Python 3.4.
24 lines
784 B
Makefile
24 lines
784 B
Makefile
# $NetBSD: Makefile,v 1.7 2019/06/15 07:21:21 adam Exp $
|
|
|
|
DISTNAME= lmfit-0.9.13
|
|
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.19:../../math/py-scipy
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.11.0:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-uncertainties>=3.0:../../math/py-uncertainties
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|