From c7e7e1846f46d7120e99653b9b6d1feb9416181f Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Thu, 7 Jan 2021 00:06:53 +0200 Subject: python3-sympy: Upgrade 1.6.2 -> 1.7.1 Upgrade to release 1.7.1: - There was a regression in 1.7 that meant that __slots__ would not work correctly for Basic instances and they would end up having __dict__. This also made it possible to set arbitrary attributes on Basic instances such as symbols which breaks immutability. This was fixed in 1.7.1 to ensure that Basic instances do not have __dict__ and it is not possible to set attributes on them. - Fixed lazy iteration of series with expr.series(x, n=None) which was broken in the 1.7 release. - Updated documentation for sympy.stats.sample for seed argument. - sympy.stats.sample now has an optional seed argument. - Random failures with sympy.stats.sample have now been fixed. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-sympy_1.6.2.bb | 16 ---------------- .../recipes-devtools/python/python3-sympy_1.7.1.bb | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 16 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb create mode 100644 meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb (limited to 'meta-python') diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb b/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb deleted file mode 100644 index 428b40c3b7..0000000000 --- a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb +++ /dev/null @@ -1,16 +0,0 @@ -# This recipe is adapted from one in meta-jupyter: -# https://github.com/Xilinx/meta-jupyter/blob/master/recipes-python/python3-sympy_1.1.bb - -SUMMARY = "Computer algebra system (CAS) in Python" -HOMEPAGE = "https://pypi.org/project/sympy/" -LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4" - -SRC_URI[md5sum] = "50d6b69b1de36b757484b9ff833a9e0a" -SRC_URI[sha256sum] = "1cfadcc80506e4b793f5b088558ca1fcbeaec24cd6fc86f1fdccaa3ee1d48708" - -inherit pypi setuptools3 - -RDEPENDS_${PN} += "python3-mpmath" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb new file mode 100644 index 0000000000..d4508689f6 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb @@ -0,0 +1,15 @@ +# This recipe is adapted from one in meta-jupyter: +# https://github.com/Xilinx/meta-jupyter/blob/master/recipes-python/python3-sympy_1.1.bb + +SUMMARY = "Computer algebra system (CAS) in Python" +HOMEPAGE = "https://pypi.org/project/sympy/" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4" + +SRC_URI[sha256sum] = "a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e" + +inherit pypi setuptools3 + +RDEPENDS_${PN} += "python3-mpmath" + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf