14
0
forked from pool/python-tablib

Accepting request 822666 from home:mcalabkova:branches:devel:languages:python

- Update to 2.0.0
  * The `Row.lpush/rpush` logic was reversed. `lpush` was appending while `rpush`
    and `append` were prepending. This was fixed (reversed behavior). If you
    counted on the broken behavior, please update your code (#453).
  * Fixed minimal openpyxl dependency version to 2.6.0 (#457).
  * Dates from xls files are now read as Python datetime objects (#373).
  * Allow import of "ragged" xlsx files (#465).
  * When importing an xlsx file, Tablib will now read cell values instead of formulas (#462).

OBS-URL: https://build.opensuse.org/request/show/822666
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tablib?expand=0&rev=14
This commit is contained in:
Tomáš Chvátal
2020-07-24 14:30:49 +00:00
committed by Git OBS Bridge
parent 96ccddcae6
commit 9ff6dc25ec
4 changed files with 29 additions and 18 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jul 24 14:13:26 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 2.0.0
* The `Row.lpush/rpush` logic was reversed. `lpush` was appending while `rpush`
and `append` were prepending. This was fixed (reversed behavior). If you
counted on the broken behavior, please update your code (#453).
* Fixed minimal openpyxl dependency version to 2.6.0 (#457).
* Dates from xls files are now read as Python datetime objects (#373).
* Allow import of "ragged" xlsx files (#465).
* When importing an xlsx file, Tablib will now read cell values instead of formulas (#462).
-------------------------------------------------------------------
Mon Apr 20 09:06:13 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>