From ca243baa6c06c47e339eb95347040c713bfff490 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Thu, 12 Nov 2020 12:56:17 +0200 Subject: python3-pandas: Upgrade 1.1.3 -> 1.1.4 Upgrade to release 1.1.4: - Fixed regression in read_csv() raising a ValueError when names was of type dict_keys - Fixed regression in read_csv() with more than 1M rows and specifying a index_col argument - Fixed regression where attempting to mutate a DateOffset object would no longer raise an AttributeError - Fixed regression where DataFrame.agg() would fail with TypeError when passed positional arguments to be passed on to the aggregation function - Fixed regression in RollingGroupby with sort=False not being respected - Fixed regression in Series.astype() converting None to "nan" when casting to string - Fixed regression in Series.rank() method failing for read-only data - Fixed regression in RollingGroupby causing a segmentation fault with Index of dtype object - Fixed regression in DataFrame.resample(...).apply(...)() raised AttributeError when input was a DataFrame and only a Series was evaluated - Fixed regression in DataFrame.groupby(..).std() with nullable integer dtype - Fixed regression in PeriodDtype comparing both equal and unequal to its string representation - Fixed regression where slicing DatetimeIndex raised AssertionError on irregular time series with pd.NaT or on unsorted indices - Fixed regression in certain offsets (pd.offsets.Day() and below) no longer being hashable - Fixed regression in StataReader which required chunksize to be manually set when using an iterator to read a dataset - Fixed regression in setitem with DataFrame.iloc() which raised error when trying to set a value while filtering with a boolean list - Fixed regression in setitem with a Series getting aligned before setting the values - Fixed regression in MultiIndex.is_monotonic_increasing returning wrong results with NaN in at least one of the levels - Fixed regression in inplace arithmetic operation on a Series not updating the parent DataFrame - Fixed bug causing groupby(...).sum() and similar to not preserve metadata - Fixed bug in Series.isin() and DataFrame.isin() raising a ValueError when the target was read-only - Fixed bug in GroupBy.fillna() that introduced a performance regression after 1.0.5 - Fixed bug in DataFrame.info() was raising a KeyError when the DataFrame has integer column names - Fixed bug in DataFrameGroupby.apply() would drop a CategoricalIndex when grouped on Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../python/python3-pandas_1.1.3.bb | 25 ---------------------- .../python/python3-pandas_1.1.4.bb | 25 ++++++++++++++++++++++ 2 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb create mode 100644 meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb (limited to 'meta-python') diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb deleted file mode 100644 index da1ffd0b6d..0000000000 --- a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb +++ /dev/null @@ -1,25 +0,0 @@ -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=c2a8f987b2ce77c368c6b3e1b5b10774" - -SRC_URI[md5sum] = "f10372d83a1c55cae217e8c05bf9bc5d" -SRC_URI[sha256sum] = "babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613" - -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}-pytz \ -" diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb new file mode 100644 index 0000000000..78730b46af --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb @@ -0,0 +1,25 @@ +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=c2a8f987b2ce77c368c6b3e1b5b10774" + +SRC_URI[md5sum] = "594e6a429f297c77470e37d3510cccbb" +SRC_URI[sha256sum] = "a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6" + +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}-pytz \ +" -- cgit 1.2.3-korg