14
0
forked from pool/python-tablib

- Update to 1.1.0:

* Tablib is now able to import CSV content where not all rows have the same length. Missing columns on any line receive the empty string (#226).
  * Dropped Python 2 support
  * Formats can now be dynamically registered through the tablib.formats.registry.refister API (#256).
  * Tablib methods expecting data input (detect_format, import_set, Dataset.load, Databook.load) now accepts file-like objects in addition to raw strings and bytestrings (#440).
  * Fixed a crash when exporting an empty string with the ReST format (#368)
  * Error cells from imported .xls files contain now the error string (#202)
- Add BuildRequires on python-tabulate.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tablib?expand=0&rev=10
This commit is contained in:
2020-02-25 05:54:24 +00:00
committed by Git OBS Bridge
parent f3a0f5aabf
commit 8d672a7150
4 changed files with 20 additions and 7 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Feb 25 05:52:59 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.1.0:
* Tablib is now able to import CSV content where not all rows have the same length. Missing columns on any line receive the empty string (#226).
* Dropped Python 2 support
* Formats can now be dynamically registered through the tablib.formats.registry.refister API (#256).
* Tablib methods expecting data input (detect_format, import_set, Dataset.load, Databook.load) now accepts file-like objects in addition to raw strings and bytestrings (#440).
* Fixed a crash when exporting an empty string with the ReST format (#368)
* Error cells from imported .xls files contain now the error string (#202)
- Add BuildRequires on python-tabulate.
-------------------------------------------------------------------
Mon Dec 2 16:03:37 UTC 2019 - Todd R <toddrme2178@gmail.com>