diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2020-08-24 17:50:03 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-08-25 10:34:27 -0700 |
commit | 28619bb56c9aeb3d71d15bd2924205a7936702a6 (patch) | |
tree | aaadca510aebbc0e6418ba27091d0369d01ea705 /meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb | |
parent | a796bb5e88cfa64887ee64aa067157bfe038d436 (diff) | |
download | meta-openembedded-28619bb56c9aeb3d71d15bd2924205a7936702a6.tar.gz |
python3-pandas: Upgrade 1.1.0 -> 1.1.1
Upgrade to release 1.1.1:
- Fixed regression in CategoricalIndex.format() where, when
stringified scalars had different lengths, the shorter string
would be right-filled with spaces, so it had the same length
as the longest string
- Fixed regression in Series.truncate() when trying to truncate
a single-element series
- Fixed regression where DataFrame.to_numpy() would raise a
RuntimeError for mixed dtypes when converting to str
- Fixed regression where read_csv() would raise a ValueError when
pandas.options.mode.use_inf_as_na was set to True
- Fixed regression where pandas.testing.assert_series_equal()
would raise an error when non-numeric dtypes were passed with
check_exact=True
- Fixed regression in .groupby(..).rolling(..) where column
selection was ignored
- Fixed regression where DataFrame.interpolate() would raise a
TypeError when the DataFrame was empty
- Fixed regression in DataFrame.shift() with axis=1 and
heterogeneous dtypes
- Fixed regression in DataFrame.diff() with read-only data
- Fixed regression in .groupby(..).rolling(..) where a segfault
would occur with center=True and an odd number of values
- Fixed regression in DataFrame.apply() where functions that
altered the input in-place only operated on a single row
- Fixed regression in DataFrame.reset_index() would raise a
ValueError on empty DataFrame with a MultiIndex with a
datetime64 dtype level
- Fixed regression where pandas.merge_asof() would raise a
UnboundLocalError when left_index, right_index and tolerance
were set
- Fixed regression in .groupby(..).rolling(..) where a custom
BaseIndexer would be ignored
- Fixed regression in DataFrame.replace() and Series.replace()
where compiled regular expressions would be ignored during
replacement
- Bug in Styler whereby cell_ids argument had no effect due to
other recent changes
- Bug in pandas.testing.assert_series_equal() and
pandas.testing.assert_frame_equal() where extension dtypes
were not ignored when check_dtypes was set to False
- Bug in to_timedelta() fails when arg is a Series with Int64
dtype containing null values
- Bug in .groupby(..).rolling(..) where passing closed with
column selection would raise a ValueError
- Bug in DataFrame constructor failing to raise ValueError in
some cases when data and index have mismatched lengths
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>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb new file mode 100644 index 0000000000..63ae69e3de --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.1.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "pandas library for high-performance data analysis tools" | ||
2 | DESCRIPTION = "pandas is an open source, BSD-licensed library providing \ | ||
3 | high-performance, easy-to-use data structures and data analysis tools for \ | ||
4 | the Python programming language." | ||
5 | HOMEPAGE = "http://pandas.pydata.org/" | ||
6 | LICENSE = "BSD-3-Clause" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774" | ||
8 | |||
9 | SRC_URI[md5sum] = "bb796b56c276ecea1a6a227010e9c56a" | ||
10 | SRC_URI[sha256sum] = "53328284a7bb046e2e885fd1b8c078bd896d7fc4575b915d4936f54984a2ba67" | ||
11 | |||
12 | inherit pypi setuptools3 | ||
13 | |||
14 | DEPENDS += " \ | ||
15 | ${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \ | ||
16 | " | ||
17 | |||
18 | CFLAGS_append_toolchain-clang = " -Wno-error=deprecated-declarations" | ||
19 | |||
20 | RDEPENDS_${PN} += " \ | ||
21 | ${PYTHON_PN}-json \ | ||
22 | ${PYTHON_PN}-numpy \ | ||
23 | ${PYTHON_PN}-dateutil \ | ||
24 | ${PYTHON_PN}-pytz \ | ||
25 | " | ||