mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

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 <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
514 B
BlitzBasic
16 lines
514 B
BlitzBasic
# 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"
|