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

IPython 7.26 is a minor release that fixes a couple of issues, updates in API and Copyright/Licenses issues around various part of the codebase. We’ll highlight this issue <https://github.com/ipython/ipython/issues/13039> pointing out we were including and refereeing to code from Stack Overflow which was CC-BY-SA, hence incompatible with the BSD license of IPython. This lead us to a rewriting of the corresponding logic which in our case was done in a more efficient way (in our case we were searching string prefixes instead of full strings). You will notice also a number of documentation improvements and cleanup. Of particular interest are the following Pull-requests: The IPython directive now uses Sphinx logging for warnings. PR #13030. Add expiry days option to pastebin magic and change http protocol to https. PR #13056 Make Ipython.utils.timing work with jupyterlite PR #13050. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
29 lines
802 B
BlitzBasic
29 lines
802 B
BlitzBasic
SUMMARY = "IPython: Productive Interactive Computing"
|
|
HOMEPAGE = "https://ipython.org"
|
|
AUTHOR = "The IPython Development Team <ipython-dev@python.org>"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f"
|
|
|
|
PYPI_PACKAGE = "ipython"
|
|
|
|
SRC_URI[sha256sum] = "0cff04bb042800129348701f7bd68a430a844e8fb193979c08f6c99f28bb735e"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${PYTHON_PN}-setuptools \
|
|
${PYTHON_PN}-jedi \
|
|
${PYTHON_PN}-decorator \
|
|
${PYTHON_PN}-pickleshare \
|
|
${PYTHON_PN}-traitlets \
|
|
${PYTHON_PN}-prompt-toolkit \
|
|
${PYTHON_PN}-pygments \
|
|
${PYTHON_PN}-backcall \
|
|
${PYTHON_PN}-pydoc \
|
|
${PYTHON_PN}-debugger \
|
|
${PYTHON_PN}-pexpect \
|
|
${PYTHON_PN}-unixadmin \
|
|
${PYTHON_PN}-misc \
|
|
${PYTHON_PN}-sqlite3 \
|
|
"
|
|
|
|
inherit setuptools3 pypi
|