meta-openembedded/meta-python/recipes-devtools/python/python3-pandas_1.5.2.bb
Wang Mingyu 26e8277e0f python3-pandas: upgrade 1.5.1 -> 1.5.2
Changelog:
==========
Fixed regressions
------------------
    Fixed regression in MultiIndex.join() for extension array dtypes (GH49277)
    Fixed regression in Series.replace() raising RecursionError with numeric dtype and when specifying value=None (GH45725)
    Fixed regression in arithmetic operations for DataFrame with MultiIndex columns with different dtypes (GH49769)
    Fixed regression in DataFrame.plot() preventing Colormap instance from being passed using the colormap argument if Matplotlib 3.6+ is used (GH49374)
    Fixed regression in date_range() returning an invalid set of periods for CustomBusinessDay frequency and start date with timezone (GH49441)
    Fixed performance regression in groupby operations (GH49676)
    Fixed regression in Timedelta constructor returning object of wrong type when subclassing Timedelta (GH49579)

Bug fixes
---------
    Bug in the Copy-on-Write implementation losing track of views in certain chained indexing cases (GH48996)
    Fixed memory leak in Styler.to_excel() (GH49751)

Other
---------
    Reverted color as an alias for c and size as an alias for s in function DataFrame.plot.scatter() (GH49732)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-11-28 11:32:26 -08:00

27 lines
843 B
BlitzBasic

SUMMARY = "pandas library for high-performance data analysis tools"
DESCRIPTION = "pandas is an open source, BSD-licensed library providing \
high-performance, easy-to-use data structures and data analysis tools for \
the Python programming language."
HOMEPAGE = "http://pandas.pydata.org/"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c1cc9ab35a8b2aabf933cd6d245b5db3"
SRC_URI[sha256sum] = "220b98d15cee0b2cd839a6358bd1f273d0356bf964c1a1aeb32d47db0215488b"
inherit pypi setuptools3
DEPENDS += " \
${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \
"
CFLAGS:append:toolchain-clang = " -Wno-error=deprecated-declarations"
RDEPENDS:${PN} += " \
${PYTHON_PN}-json \
${PYTHON_PN}-numpy \
${PYTHON_PN}-dateutil \
${PYTHON_PN}-dateutil-zoneinfo \
${PYTHON_PN}-pytz \
${PYTHON_PN}-profile \
"