From 3660967a91a58e7820b679cf8fc724cef0a8f52a Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 18 Aug 2021 12:40:36 +0300 Subject: python3-pandas: Upgrade 1.3.1 -> 1.3.2 Upgrade to release 1.3.2: - Performance regression in DataFrame.isin() and Series.isin() for nullable data types - Regression in updating values of Series using boolean index, created by using DataFrame.pop() - Regression in DataFrame.from_records() with empty records - Fixed regression in DataFrame.shift() where TypeError occurred when shifting DataFrame created by concatenation of slices and fills with values - Regression in DataFrame.agg() when the func argument returned lists and axis=1 - Regression in DataFrame.drop() does nothing if MultiIndex has duplicates and indexer is a tuple or list of tuples - Fixed regression where read_csv() raised a ValueError when parameters names and prefix were both set to None - Fixed regression in comparisons between Timestamp object and datetime64 objects outside the implementation bounds for nanosecond datetime64 - Fixed regression in Styler.highlight_min() and Styler.highlight_max() where pandas.NA was not successfully ignored - Fixed regression in concat() where copy=False was not honored in axis=1 Series concatenation - Regression in Series.nlargest() and Series.nsmallest() with nullable integer or float dtype - Fixed regression in Series.quantile() with Int64Dtype - Bug in read_excel() modifies the dtypes dictionary when reading a file with duplicate columns - 1D slices over extension types turn into N-dimensional slices over ExtensionArrays - Fixed bug in Series.rolling() and DataFrame.rolling() not calculating window bounds correctly for the first row when center=True and window is an offset that covers all the rows - Styler.hide_columns() now hides the index name header row as well as column headers - Styler.set_sticky() has amended CSS to control the column/index names and ensure the correct sticky positions - Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/python3-pandas_1.3.2.bb | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb (limited to 'meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb') diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb b/meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb new file mode 100644 index 0000000000..55700b51cf --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb @@ -0,0 +1,26 @@ +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=3f23c5c092b74d245d48eeef72bc3fd2" + +SRC_URI[sha256sum] = "cbcb84d63867af3411fa063af3de64902665bb5b3d40b25b2059e40603594e87" + +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 \ +" -- cgit 1.2.3-korg