diff options
author | adam <adam@pkgsrc.org> | 2019-05-06 08:48:06 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-05-06 08:48:06 +0000 |
commit | 0d7f07b93666963c8b6b952672775033129c279b (patch) | |
tree | b3e1573896cfafab08d472e9f011aaf90ea7eb15 | |
parent | 7c9a51611c279cc7b3f7ee0a9e115aa18f058b7e (diff) | |
download | pkgsrc-0d7f07b93666963c8b6b952672775033129c279b.tar.gz |
py-mpmath: updated to 1.1.0
1.1.0:
Bugs:
* Fixed severe bug in householder() for complex matrices
* Fixed frequently-reported bug where findroot() mysteriously raised
UnboundLocalError
* Corrected rounding in binary-to-decimal conversion above 500 digits
* Fixed minor loss of accuracy affecting rf(), ff(), binomial(), beta()
* Fixed incorrect computation of the Hurwitz zeta function in some cases
* Fixed accuracy of digamma function near 0
* Fixed RuntimeError in qfac() in Python 3.7 caused by raising
StopIteration
* Fix to allow NumPy arrays in fdot()
Features and improvements:
* Added more automatic conversions from Fraction, Decimal, NumPy types
* Support creating mpf from a long literal
* Implemented log1p()
* Slight speedup of eig()
* Implement polylog() for general complex s and z by using Hurwitz zeta
algorithm as a fallback
Library:
* Test more CPython and PyPy versions
* Drop support for Python 2.6 and 3.2
* Use py.test for test code; lots of code cleanup
* Corrections to the documentation
-rw-r--r-- | math/py-mpmath/Makefile | 4 | ||||
-rw-r--r-- | math/py-mpmath/PLIST | 8 | ||||
-rw-r--r-- | math/py-mpmath/distinfo | 10 |
3 files changed, 8 insertions, 14 deletions
diff --git a/math/py-mpmath/Makefile b/math/py-mpmath/Makefile index 63557c35c1b..a68aeecb9fa 100644 --- a/math/py-mpmath/Makefile +++ b/math/py-mpmath/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2018/01/11 08:07:44 adam Exp $ +# $NetBSD: Makefile,v 1.15 2019/05/06 08:48:06 adam Exp $ -DISTNAME= mpmath-1.0.0 +DISTNAME= mpmath-1.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=m/mpmath/} diff --git a/math/py-mpmath/PLIST b/math/py-mpmath/PLIST index 5f1965f3815..0948149a420 100644 --- a/math/py-mpmath/PLIST +++ b/math/py-mpmath/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2018/01/11 08:07:44 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2019/05/06 08:48:06 adam Exp $ ${PYSITELIB}/${EGG_FILE} ${PYSITELIB}/mpmath/__init__.py ${PYSITELIB}/mpmath/__init__.pyc @@ -33,9 +33,6 @@ ${PYSITELIB}/mpmath/calculus/polynomials.pyo ${PYSITELIB}/mpmath/calculus/quadrature.py ${PYSITELIB}/mpmath/calculus/quadrature.pyc ${PYSITELIB}/mpmath/calculus/quadrature.pyo -${PYSITELIB}/mpmath/conftest.py -${PYSITELIB}/mpmath/conftest.pyc -${PYSITELIB}/mpmath/conftest.pyo ${PYSITELIB}/mpmath/ctx_base.py ${PYSITELIB}/mpmath/ctx_base.pyc ${PYSITELIB}/mpmath/ctx_base.pyo @@ -153,9 +150,6 @@ ${PYSITELIB}/mpmath/rational.pyo ${PYSITELIB}/mpmath/tests/__init__.py ${PYSITELIB}/mpmath/tests/__init__.pyc ${PYSITELIB}/mpmath/tests/__init__.pyo -${PYSITELIB}/mpmath/tests/extratest_bessel.py -${PYSITELIB}/mpmath/tests/extratest_bessel.pyc -${PYSITELIB}/mpmath/tests/extratest_bessel.pyo ${PYSITELIB}/mpmath/tests/extratest_gamma.py ${PYSITELIB}/mpmath/tests/extratest_gamma.pyc ${PYSITELIB}/mpmath/tests/extratest_gamma.pyo diff --git a/math/py-mpmath/distinfo b/math/py-mpmath/distinfo index 3eb56a381d2..efa2ec7cf77 100644 --- a/math/py-mpmath/distinfo +++ b/math/py-mpmath/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2018/01/11 08:07:44 adam Exp $ +$NetBSD: distinfo,v 1.9 2019/05/06 08:48:06 adam Exp $ -SHA1 (mpmath-1.0.0.tar.gz) = 1df3f1f930b9b7e752c56857f1ac22a62f25b854 -RMD160 (mpmath-1.0.0.tar.gz) = 89440e75bf0b33b125314bf60d92c5d4279c123b -SHA512 (mpmath-1.0.0.tar.gz) = e26336ef35719d9a5a7387b9104be4251726bc9753ad4763f1d6041491e9904d9fc97831875cddbfd0b6b0eb641d579fcc3f556bfae7dd8acd1c5c6b10e8cd61 -Size (mpmath-1.0.0.tar.gz) = 511353 bytes +SHA1 (mpmath-1.1.0.tar.gz) = 3f479408ea65b08bc23eeebe5dac2f2293dfec9d +RMD160 (mpmath-1.1.0.tar.gz) = 7b0ea9200d2b5f9d6a139e8d5b67ecd07e967952 +SHA512 (mpmath-1.1.0.tar.gz) = 58c69a801f65d73cc0eeb0d2c79277ed638568c656e7213d06ab4709c218aac908b2752377139010bed0e91bbfff01d129c60835ff0a928ba1185aded6de7c0a +Size (mpmath-1.1.0.tar.gz) = 512600 bytes |