Commit Graph

84 Commits

Author SHA256 Message Date
Dominique Leuenberger
cac40aa6b6 Accepting request 954099 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/954099
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=41
2022-02-15 22:57:10 +00:00
eb6a616f64 Accepting request 953981 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/953981
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=69
2022-02-13 16:15:44 +00:00
Dominique Leuenberger
1eefc7498d Accepting request 949618 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/949618
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=40
2022-02-03 22:16:06 +00:00
c08530f049 Accepting request 949309 from home:bnavigator:branches:devel:languages:python:numeric
- Skip more tests on non-intel architectures
  boo#1167730

OBS-URL: https://build.opensuse.org/request/show/949309
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=68
2022-01-28 09:08:01 +00:00
10b38d61be Accepting request 948450 from home:bnavigator:branches:devel:languages:python:numeric
- Update to version 1.4.0
  * https://pandas.pydata.org/docs/whatsnew/v1.4.0.html
  * Enhancements
   - Improved warning messages
   - Index can hold arbitrary ExtensionArrays
   - Enhancements in Styler
   - Multi-threaded CSV reading with a new CSV Engine based on
     pyarrow
   - Rank function for rolling and expanding windows
   - Groupby positional indexing
   - DataFrame.from_dict and DataFrame.to_dict have new 'tight'
     option
  * Notable bug fixes
    - Inconsistent date string parsing
    - Ignoring dtypes in concat with empty or all-NA columns
    - Null-values are no longer coerced to NaN-value in
      value_counts and mode
    - mangle_dupe_cols in read_csv no longer renames unique columns
      conflicting with target names
    - unstack and pivot_table no longer raises ValueError for
      result that would exceed int32 limit
    - groupby.apply consistent transform detection
  * API changes
    - Index.get_indexer_for() no longer accepts keyword arguments
      (other than target); in the past these would be silently
      ignored if the index was not unique (GH42310)
    - Change in the position of the min_rows argument in
      DataFrame.to_string() due to change in the docstring
      (GH44304)
    - Reduction operations for DataFrame or Series now raising a
      ValueError when None is passed for skipna (GH44178)
    - read_csv() and read_html() no longer raising an error when
      one of the header rows consists only of Unnamed: columns
      (GH13054)
    - Changed the name attribute of several holidays in
      USFederalHolidayCalendar to match official federal holiday
      names.
  * Deprecations
    - Deprecated Int64Index, UInt64Index & Float64Index
    - Deprecated Frame.append and Series.append
- Split out test runs into separate flavors, optimize memory usage
  in pytest-xdist runs

OBS-URL: https://build.opensuse.org/request/show/948450
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=67
2022-01-25 07:38:27 +00:00
Dominique Leuenberger
75f318c1ca Accepting request 943930 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/943930
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=39
2022-01-07 11:44:42 +00:00
80efc897c8 Accepting request 943876 from home:bnavigator:branches:devel:languages:python:numeric
- Update to version 1.3.5
  * Fixed regression in Series.equals() when comparing floats with
    dtype object to None (GH44190)
  * Fixed regression in merge_asof() raising error when array was
    supplied as join key (GH42844)
  * Fixed regression when resampling DataFrame with DateTimeIndex
    with empty groups and uint8, uint16 or uint32 columns
    incorrectly raising RuntimeError (GH43329)
  * Fixed regression in creating a DataFrame from a timezone-aware
    Timestamp scalar near a Daylight Savings Time transition
    (GH42505)
  * Fixed performance regression in read_csv() (GH44106)
  * Fixed regression in Series.duplicated() and
    Series.drop_duplicates() when Series has Categorical dtype with
    boolean categories (GH44351)
  * Fixed regression in GroupBy.sum() with timedelta64[ns] dtype
    containing NaT failing to treat that value as NA (GH42659)
  * Fixed regression in RollingGroupby.cov() and
    RollingGroupby.corr() when other had the same shape as each
    group would incorrectly return superfluous groups in the result
    (GH42915)

OBS-URL: https://build.opensuse.org/request/show/943876
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=66
2022-01-05 08:50:45 +00:00
Dominique Leuenberger
25f743cef2 Accepting request 926609 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/926609
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=38
2021-10-25 13:17:09 +00:00
b099e8b0fa Accepting request 926551 from home:Guillaume_G:branches:devel:languages:python:numeric
- Update to version 1.3.4
  * Fixed regression in DataFrame.convert_dtypes() incorrectly
    converts byte strings to strings (GH43183)
  * Fixed regression in GroupBy.agg() where it was failing
    silently with mixed data types along axis=1 and MultiIndex (GH43209)
  * Fixed regression in merge() with integer and NaN keys
    failing with outer merge (GH43550)
  * Fixed regression in DataFrame.corr() raising ValueError with
    method="spearman" on 32-bit platforms (GH43588)
  * Fixed performance regression in MultiIndex.equals() (GH43549)
  * Fixed performance regression in GroupBy.first() and GroupBy.last()
    with StringDtype (GH41596)
  * Fixed regression in Series.cat.reorder_categories() failing to
    update the categories on the Series (GH43232)
  * Fixed regression in Series.cat.categories() setter failing to
    update the categories on the Series (GH43334)
  * Fixed regression in read_csv() raising UnicodeDecodeError exception
    when memory_map=True (GH43540)
  * Fixed regression in DataFrame.explode() raising AssertionError
    when column is any scalar which is not a string (GH43314)
  * Fixed regression in Series.aggregate() attempting to pass args
    and kwargs multiple times to the user supplied func in certain cases (GH43357)
  * Fixed regression when iterating over a DataFrame.groupby.rolling
    object causing the resulting DataFrames to have an incorrect index if the input groupings were not sorted (GH43386)
  * Fixed regression in DataFrame.groupby.rolling.cov() and 
    DataFrame.groupby.rolling.corr() computing incorrect results if the
    input groupings were not sorted (GH43386)
  * Fixed bug in pandas.DataFrame.groupby.rolling() and
    pandas.api.indexers.FixedForwardWindowIndexer leading to
    segfaults and window endpoints being mixed across groups (GH43267)
  * Fixed bug in GroupBy.mean() with datetimelike values
    including NaT values returning incorrect results (GH43132)
  * Fixed bug in Series.aggregate() not passing the first args
    to the user supplied func in certain cases (GH43357)
  * Fixed memory leaks in Series.rolling.quantile() and
    Series.rolling.median() (GH43339)

OBS-URL: https://build.opensuse.org/request/show/926551
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=65
2021-10-20 18:24:36 +00:00
Dominique Leuenberger
dc3a042e3c Accepting request 921134 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/921134
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=37
2021-09-26 19:48:36 +00:00
aab0b4e004 Accepting request 920383 from home:bnavigator:branches:devel:languages:python:numeric
- Update to version 1.3.3
  * Fixed regression in DataFrame constructor failing to broadcast
    for defined Index and len one list of Timestamp (GH42810)
  * Fixed regression in GroupBy.agg() incorrectly raising in some
    cases (GH42390)
  * Fixed regression in GroupBy.apply() where nan values were
    dropped even with dropna=False (GH43205)
  * Fixed regression in GroupBy.quantile() which was failing with
    pandas.NA (GH42849)
  * Fixed regression in merge() where on columns with
    ExtensionDtype or bool data types were cast to object in right
    and outer merge (GH40073)
  * Fixed regression in RangeIndex.where() and RangeIndex.putmask()
    raising AssertionError when result did not represent a
    RangeIndex (GH43240)
  * Fixed regression in read_parquet() where the fastparquet engine
    would not work properly with fastparquet 0.7.0 (GH43075)
  * Fixed regression in DataFrame.loc.__setitem__() raising
    ValueError when setting array as cell value (GH43422)
  * Fixed regression in is_list_like() where objects with __iter__
    set to None would be identified as iterable (GH43373)
  * Fixed regression in DataFrame.__getitem__() raising error for
    slice of DatetimeIndex when index is non monotonic (GH43223)
  * Fixed regression in Resampler.aggregate() when used after
    column selection would raise if func is a list of aggregation
    functions (GH42905)
  * Fixed regression in DataFrame.corr() where Kendall correlation
    would produce incorrect results for columns with repeated
    values (GH43401)
  * Fixed regression in DataFrame.groupby() where aggregation on
    columns with object types dropped results on those columns
    (GH42395, GH43108)
  * Fixed regression in Series.fillna() raising TypeError when
    filling float Series with list-like fill value having a dtype
    which couldn’t cast lostlessly (like float32 filled with
    float64) (GH43424)
  * Fixed regression in read_csv() raising AttributeError when the
    file handle is an tempfile.SpooledTemporaryFile object
    (GH43439)
  * Fixed performance regression in core.window.ewm.
    ExponentialMovingWindow.mean() (GH42333)
  * Performance improvement for DataFrame.__setitem__() when the
    key or value is not a DataFrame, or key is not list-like
    (GH43274)
  * Fixed bug in DataFrameGroupBy.agg() and DataFrameGroupBy.
    transform() with engine="numba" where index data was not being
    correctly passed into func (GH43133)
- Release 1.3.2
  * Performance regression in DataFrame.isin() and Series.isin()
    for nullable data types (GH42714)
  * Regression in updating values of Series using boolean index,
    created by using DataFrame.pop() (GH42530)
  * Regression in DataFrame.from_records() with empty records
    (GH42456)
  * Fixed regression in DataFrame.shift() where TypeError occurred
    when shifting DataFrame created by concatenation of slices and
    fills with values (GH42719)
  * Regression in DataFrame.agg() when the func argument returned
    lists and axis=1 (GH42727)
  * Regression in DataFrame.drop() does nothing if MultiIndex has
    duplicates and indexer is a tuple or list of tuples (GH42771)
  * Fixed regression where read_csv() raised a ValueError when
    parameters names and prefix were both set to None (GH42387)
  * Fixed regression in comparisons between Timestamp object and
    datetime64 objects outside the implementation bounds for
    nanosecond datetime64 (GH42794)
  * Fixed regression in Styler.highlight_min() and Styler.
    highlight_max() where pandas.NA was not successfully ignored
    (GH42650)
  * Fixed regression in concat() where copy=False was not honored
    in axis=1 Series concatenation (GH42501)
  * Regression in Series.nlargest() and Series.nsmallest() with
    nullable integer or float dtype (GH42816)
  * Fixed regression in Series.quantile() with Int64Dtype (GH42626)
  * Fixed regression in Series.groupby() and DataFrame.groupby()
    where supplying the by argument with a Series named with a
    tuple would incorrectly raise (GH42731)
  * Bug in read_excel() modifies the dtypes dictionary when reading
    a file with duplicate columns (GH42462)
  * 1D slices over extension types turn into N-dimensional slices
    over ExtensionArrays (GH42430)
  * 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
    (GH42753)
  * Styler.hide_columns() now hides the index name header row as
    well as column headers (GH42101)
  * Styler.set_sticky() has amended CSS to control the column/index
    names and ensure the correct sticky positions (GH42537)
  * Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode
    (GH42866)

OBS-URL: https://build.opensuse.org/request/show/920383
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=64
2021-09-23 11:26:45 +00:00
Dominique Leuenberger
7a41bacfdf Accepting request 912685 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/912685
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=36
2021-08-23 08:07:36 +00:00
87513c0f77 Accepting request 912579 from home:favogt:branches:devel:languages:python:numeric
- Drop suggests of python-numba (pulls in LLVM10) and python-QtPy
  (pulls in Qt3D, python-qt5 is enough) to make the TW DVD fit again

OBS-URL: https://build.opensuse.org/request/show/912579
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=63
2021-08-17 13:15:08 +00:00
Richard Brown
54f1ddcb96 Accepting request 911980 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/911980
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=35
2021-08-16 08:08:35 +00:00
0de64384b4 Accepting request 911851 from home:bnavigator:branches:devel:languages:python:numeric
- Update to version 1.3.1
  Fixed regressions
  * Pandas could not be built on PyPy (GH42355)
  * DataFrame constructed with an older version of pandas could not
    be unpickled (GH42345)
  * Performance regression in constructing a DataFrame from a
    dictionary of dictionaries (GH42248)
  * Fixed regression in DataFrame.agg() dropping values when the
    DataFrame had an Extension Array dtype, a duplicate index, and
    axis=1 (GH42380)
  * Fixed regression in DataFrame.astype() changing the order of
    noncontiguous data (GH42396)
  * Performance regression in DataFrame in reduction operations
    requiring casting such as DataFrame.mean() on integer data
    (GH38592)
  * Performance regression in DataFrame.to_dict() and Series.to_dict
    () when orient argument one of “records”, “dict”, or “split”
    (GH42352)
  * Fixed regression in indexing with a list subclass incorrectly
    raising TypeError (GH42433, GH42461)
  * Fixed regression in DataFrame.isin() and Series.isin() raising
    TypeError with nullable data containing at least one missing
    value (GH42405)
  * Regression in concat() between objects with bool dtype and
    integer dtype casting to object instead of to integer (GH42092)
  * Bug in Series constructor not accepting a dask.Array (GH38645)
  * Fixed regression for SettingWithCopyWarning displaying
    incorrect stacklevel (GH42570)
  * Fixed regression for merge_asof() raising KeyError when one of
    the by columns is in the index (GH34488)

OBS-URL: https://build.opensuse.org/request/show/911851
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=62
2021-08-13 12:10:16 +00:00
Dominique Leuenberger
769c403887 Accepting request 890050 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/890050
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=34
2021-05-05 18:39:39 +00:00
b493e949ad Accepting request 889896 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/889896
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=60
2021-05-03 14:16:13 +00:00
Dominique Leuenberger
09fdd10305 Accepting request 877583 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/877583
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=33
2021-03-12 12:30:55 +00:00
142ca081b6 Accepting request 876612 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/876612
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=58
2021-03-08 08:29:31 +00:00
Dominique Leuenberger
6b8139c3cf Accepting request 872266 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/872266
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=32
2021-02-16 21:34:17 +00:00
f3f936b788 Accepting request 872216 from home:bnavigator:branches:devel:languages:python:numeric
- Update to version 1.2.2
  * https://pandas.pydata.org/docs/whatsnew/v1.2.2.html
  * fixed regressions and bugfixes
- Update to version 1.2.1
  * https://pandas.pydata.org/docs/whatsnew/v1.2.1.html
  * fixed regressions and bugfixes
  * Calling NumPy ufuncs on non-aligned DataFrames
  * The deprecated attributes _AXIS_NAMES and _AXIS_NUMBERS of 
    DataFrame and Series will no longer show up in dir or inspect.
    getmembers calls (GH38740)
  * Bumped minimum fastparquet version to 0.4.0 to avoid 
    AttributeError from numba (GH38344)
  * Bumped minimum pymysql version to 0.8.1 to avoid test failures 
    (GH38344)
  * Added reference to backwards incompatible check_freq arg of 
    testing.assert_frame_equal() and testing.assert_series_equal() 
    in pandas 1.1.0 whats new (GH34050)
- Update to version 1.2.0
  * https://pandas.pydata.org/docs/whatsnew/v1.2.0.html
  * WARNING:   
      The xlwt package for writing old-style .xls excel files is
    no longer maintained. The xlrd package is now only for reading 
    old-style .xls files.
      Previously, the default argument engine=None to read_excel() 
    would result in using the xlrd engine in many cases, including 
    new Excel 2007+ (.xlsx) files. If openpyxl is installed, many 
    of these cases will now default to using the openpyxl engine. 
    See the read_excel() documentation for more details.
      Thus, it is strongly encouraged to install openpyxl to read 
    Excel 2007+ (.xlsx) files. Please do not report issues when 
    using ``xlrd`` to read ``.xlsx`` files. This is no longer 
    supported, switch to using openpyxl instead.    
      Attempting to use the xlwt engine will raise a FutureWarning 
    unless the option io.excel.xls.writer is set to "xlwt". While 
    this option is now deprecated and will also raise a     
    FutureWarning, it can be globally set and the warning 
    suppressed. Users are recommended to write .xlsx files using 
    the openpyxl engine instead.
  Enhancements
  * Optionally disallow duplicate labels
  * Passing arguments to fsspec backends
  * Support for binary file handles in to_csv
  * Support for short caption and table position in to_latex
  * Change in default floating precision for read_csv and 
    read_table
  * Experimental nullable data types for float data
  * Index/column name preservation when aggregating
  * GroupBy supports EWM operations directly
  Deprecations
  * https://pandas.pydata.org/docs/whatsnew/v1.2.0.html#deprecations
- Skip python36 build: New minimum supported Python is 3.7.1
- Only Suggest instead of Recommend optional dependencies. Nobody
  wants to pull in all of those packages by default.
- Remove pandas-pytest.ini
- Rework test deselection
- Limit to 4 pytest-xdist workers, as collection consumes a lot of
  memory

OBS-URL: https://build.opensuse.org/request/show/872216
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=56
2021-02-15 06:55:56 +00:00
Dominique Leuenberger
ad94842b55 Accepting request 845470 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/845470
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=31
2020-11-06 22:43:59 +00:00
8117f721d8 Accepting request 845115 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/845115
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=54
2020-11-02 15:25:28 +00:00
Dominique Leuenberger
1666b41692 Accepting request 839707 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/839707
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=30
2020-10-08 11:09:41 +00:00
Tomáš Chvátal
376c96c266 Accepting request 839658 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/839658
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=52
2020-10-06 08:01:19 +00:00
Tomáš Chvátal
4139fd717b Accepting request 834031 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/834031
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=51
2020-09-13 17:43:16 +00:00
Dominique Leuenberger
3f721d0eca Accepting request 832629 from devel:languages:python:numeric
- specfile:
  * updated versions of some requirements, require numpy during build
  * removed pandas-pr34991-npconstructor.patch, included upstream
  * removed sed commands that are not needed anymore
  * skip test to see if pandas is installed
- update to version 1.1.1:
  * Fixed regressions
    + 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 (GH35439)
    + Fixed regression in Series.truncate() when trying to truncate a
      single-element series (GH35544)
    + Fixed regression where DataFrame.to_numpy() would raise a
      RuntimeError for mixed dtypes when converting to str (GH35455)
    + Fixed regression where read_csv() would raise a ValueError when
      pandas.options.mode.use_inf_as_na was set to True (GH35493)
    + Fixed regression where pandas.testing.assert_series_equal()
      would raise an error when non-numeric dtypes were passed with
      check_exact=True (GH35446)
    + Fixed regression in .groupby(..).rolling(..) where column
      selection was ignored (GH35486)
    + Fixed regression where DataFrame.interpolate() would raise a
      TypeError when the DataFrame was empty (GH35598)
    + Fixed regression in DataFrame.shift() with axis=1 and
      heterogeneous dtypes (GH35488)
    + Fixed regression in DataFrame.diff() with read-only data
      (GH35559)
    + Fixed regression in .groupby(..).rolling(..) where a segfault
      would occur with center=True and an odd number of values

OBS-URL: https://build.opensuse.org/request/show/832629
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=29
2020-09-09 15:48:06 +00:00
Tomáš Chvátal
b46ed603fb OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=49 2020-09-06 19:24:10 +00:00
Tomáš Chvátal
d71108da0c Accepting request 832528 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/832528
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=48
2020-09-05 20:14:00 +00:00
Dominique Leuenberger
0ae16f8f66 Accepting request 822314 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/822314
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=28
2020-08-01 10:30:19 +00:00
Tomáš Chvátal
91a92cf40c Accepting request 822301 from home:bnavigator:branches:devel:languages:python:numeric
- support newest numpy by removing old test
  gh#pandas-dev/pandas#34991 pandas-pr34991-npconstructor.patch  
- move testing to multibuild flavor
- run slow tests only on x86_64
- replace gcc10-skip-one-test.patch with pytest -k deselection
- tidy SKIP_TESTS declarations
- add pandas-pytest.ini as pytest.ini in order to support the
  custom marks and filter some warnings
- remove random hash seed

OBS-URL: https://build.opensuse.org/request/show/822301
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=46
2020-07-23 06:35:55 +00:00
Dominique Leuenberger
ac229f9dfc Accepting request 817948 from devel:languages:python:numeric
- Skip test_raw_roundtrip on i586

- Update to version 1.0.5
  * Fixed regressions
    + Fix regression in read_parquet() when reading from file-like objects (GH34467).
    + Fix regression in reading from public S3 buckets (GH34626).
      Note this disables the ability to read Parquet files from
      directories on S3 again (GH26388, GH34632), which was added
      in the 1.0.4 release, but is now targeted for pandas 1.1.0.
    + Fixed regression in replace() raising an AssertionError when replacing values in an extension dtype with values of a different dtype (GH34530)
  * Bug fixes
    + Fixed building from source with Python 3.8 fetching the wrong version of NumPy

OBS-URL: https://build.opensuse.org/request/show/817948
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=27
2020-07-02 21:54:18 +00:00
ca2342b165 - Skip test_raw_roundtrip on i586
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=44
2020-06-30 13:04:03 +00:00
Todd R
66527359b3 Accepting request 816736 from home:TheBlackCat:branches:devel:languages:python:numeric
- Update to version 1.0.5
  * Fixed regressions
    + Fix regression in read_parquet() when reading from file-like objects (GH34467).
    + Fix regression in reading from public S3 buckets (GH34626).
      Note this disables the ability to read Parquet files from
      directories on S3 again (GH26388, GH34632), which was added
      in the 1.0.4 release, but is now targeted for pandas 1.1.0.
    + Fixed regression in replace() raising an AssertionError when replacing values in an extension dtype with values of a different dtype (GH34530)
  * Bug fixes
    + Fixed building from source with Python 3.8 fetching the wrong version of NumPy

OBS-URL: https://build.opensuse.org/request/show/816736
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=43
2020-06-24 01:54:15 +00:00
Dominique Leuenberger
36c3be6005 Accepting request 810549 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/810549
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=26
2020-06-11 12:38:01 +00:00
Tomáš Chvátal
f3883c1885 Accepting request 810417 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/810417
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=41
2020-06-01 06:46:20 +00:00
Yuchen Lin
4a473f8c43 Accepting request 808929 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/808929
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=25
2020-05-29 19:20:12 +00:00
Tomáš Chvátal
a6ba2f7761 Accepting request 808860 from home:marxin:branches:devel:languages:python:numeric
- Add gcc10-skip-one-test.patch in order to fix a failing test-case
  on i586.

OBS-URL: https://build.opensuse.org/request/show/808860
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=39
2020-05-26 07:29:19 +00:00
b10c5eda60 - Increase memory _constraints to 8GB RAM.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=38
2020-05-21 21:19:50 +00:00
c329e95ac3 Increase _constraints
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=37
2020-05-21 20:52:50 +00:00
b51797a84e Add diagnostics
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=36
2020-05-21 17:39:44 +00:00
Dominique Leuenberger
6bec6c8cf6 Accepting request 789451 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/789451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=24
2020-04-08 17:54:19 +00:00
Tomáš Chvátal
d8734804c3 Accepting request 789381 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/789381
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=34
2020-03-29 07:07:16 +00:00
Dominique Leuenberger
f5551ed4db Accepting request 785460 from devel:languages:python:numeric
- Skip i586 failing tests with upstream ticket

- Update to 1.0.2:
  * see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.2.html
- Add pyperclip and Jinja2 as test dependencies

- Update to 1.0.1:
  * see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.1.html
  * see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.0.html

OBS-URL: https://build.opensuse.org/request/show/785460
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=23
2020-03-26 23:24:39 +00:00
Tomáš Chvátal
62297593a4 - Skip i586 failing tests with upstream ticket
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=32
2020-03-16 07:13:52 +00:00
Tomáš Chvátal
35f3a97ed9 Accepting request 784540 from home:frispete:branches:openSUSE:Factory
Major building block for advanced numerical processing..

- Update to 1.0.2:
  * see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.2.html
- Add pyperclip and Jinja2 as test dependencies

OBS-URL: https://build.opensuse.org/request/show/784540
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=31
2020-03-13 07:43:54 +00:00
ee05d0a1b1 - Update to 1.0.1:
* see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.1.html
  * see https://pandas.pydata.org/pandas-docs/stable/whatsnew/v1.0.0.html

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=30
2020-03-09 15:20:21 +00:00
Dominique Leuenberger
7ccf5df1b7 Accepting request 777938 from devel:languages:python:numeric
Revert, breaks ton of stuff (forwarded request 777937 from scarabeus_iv)

OBS-URL: https://build.opensuse.org/request/show/777938
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=22
2020-03-08 21:21:16 +00:00
Tomáš Chvátal
3a1ba12f92 Accepting request 777937 from devel:languages:python:numeric
Revert, breaks ton of stuff

OBS-URL: https://build.opensuse.org/request/show/777937
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=28
2020-02-21 11:53:33 +00:00
Steve Kowalik
ff1a37d74f - Update to version 1.0.1
+ Enhancements
    * Using Numba in rolling.apply and expanding.apply
    * Defining custom windows for rolling operations
    * Converting to Markdown
  + Experimental new features
    * Experimental NA scalar to denote missing values
    * Dedicated string data type
    * Boolean data type with missing values support
    * convert_dtypes method to ease use of supported extension dtypes
  + Backwards incompatible API changes
    * Avoid using names from MultiIndex.levels
    * New repr for IntervalArray
    * DataFrame.rename now only accepts one positional argument
    * Extended verbose info output for DataFrame
    * pandas.array() inference changes
    * arrays.IntegerArray now uses pandas.NA
    * arrays.IntegerArray comparisons return arrays.BooleanArray
    * By default Categorical.min() now returns the minimum instead of np.nan
    * Default dtype of empty pandas.Series
    * Result dtype inference changes for resample operations
  + Many, many fixed regressions
- Add Jinja2 and xsel to BuildRequires

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=27
2020-02-21 06:02:09 +00:00