summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Expose 'read_only' parameter for 'import_set' and 'import_book' (#483)HEADmasterdmosberger2020-12-042-0/+7
|
* Add support for Python 3.9, drop EOL 3.5 (#477)Hugo van Kemenade2020-10-301-1/+2
|
* Suggest quotes when pip installing with optional dependencies (#474)Hugo van Kemenade2020-08-121-1/+1
|
* Fixes #469 - Prevented rst crash with only-space strings (#470)Claude Paroz2020-06-151-0/+2
| | | Thanks nexone for the report.
* Fixes #465 - Allow importing 'ragged' .xlsx files (#466)Claude Paroz2020-05-162-0/+7
|
* Fixes #462 - Update xlsx import to read cell values instead of cell formulasdragonworks2020-03-112-0/+7
| | | Co-authored-by: Claude Paroz <claude@2xlibre.net>
* Refs #373 - Import dates from xls files as Python datetime objectsClaude Paroz2020-03-092-0/+6
|
* Fixes #457 - Bumped openpyxl dependency to 2.6.0 (#458)Claude Paroz2020-02-161-1/+1
|
* Fixes #453 - Reversing behavior of Row.lpush/Row.rpush (#454)Claude Paroz2020-02-131-16/+4
| | | Co-authored-by: chim <chenpan@xiaomai5.com>
* Fixes #226 - Allow importing ragged CSV files (#456)Claude Paroz2020-02-121-0/+19
|
* Refs #401 - Fixed some flake8 errorsClaude Paroz2020-01-111-4/+14
|
* Fixes #440 -Normalize stream inputs as IO streamsClaude Paroz2020-01-112-7/+23
|
* Refs #293 - Ensured Dataset can be pickled/unpickled without damagesClaude Paroz2019-12-301-0/+5
|
* Implement feature that allows to export tabular data suited to a… (#437)Daniel Santos2019-12-102-0/+12
|
* Force default_flow_style for pyyaml safe_dumpJoseph Herlant2019-11-241-0/+11
| | | | This is to keep behavior of pre-5.1 pyyaml.
* Documented csv import/export options from standard lib (#431)Claude Paroz2019-11-141-0/+6
|
* Fix NameError: name '_get_column_widths' is not defined (#433)Hugo van Kemenade2019-11-121-0/+22
| | | | | | * Fix NameError: name '_get_column_widths' is not defined * Also test ReSTFormat.export_set
* Fixes #422 - Allow ability to lazy-load external modules (#430)Claude Paroz2019-11-111-0/+1
|
* No __cmp__ or cmp in Python 3 (#429)Hugo van Kemenade2019-11-111-0/+42
| | | | | | | | * No __cmp__ or cmp in Python 3 * Add rich comparisons * Simplify using total_ordering decorator
* Fixes #421 - Make all dependencies optionalClaude Paroz2019-11-101-1/+12
| | | | Thanks Hugo van Kemenade for the review.
* Refs #256 - Implement class-based formatsClaude Paroz2019-11-021-21/+38
| | | | This allows to extend Tablib with new formats far more easily.
* Revert " Implement feature new format: Cli. Generate adapter for tabulate. ↵Claude Paroz2019-10-301-6/+0
| | | | | | | This close issue #340" This reverts commit c26159d48f60e737ba6e308b3ed88858cd115cc7. The patch was NOT ready to be merged.
* Implement feature new format: Cli. Generate adapter for tabulate. This ↵Daniel Santos2019-10-301-0/+6
| | | | | | | | | | | | | | | | close issue #340 * Implement feature new format: Cli. Generate adapter for tabulate. This close issue #340 * Write respective tests. * Correct name Clase Base Test * Implement missing class method to export cli. * Remove property headers in method export book Cli. * Remove cli from list to test Iterable data books.
* Fixes #202 - Keep error content when importing xls filesClaude Paroz2019-10-222-5/+24
|
* Add known third parties to isortClaude Paroz2019-10-221-2/+1
|
* Refs #401 - Sort imports with isortHugo2019-10-221-0/+1
|
* Add more testsHugo2019-10-201-0/+170
|
* 100% Row test coverageHugo2019-10-201-0/+82
|
* __getslice__ is deprecated since Python 2.0 and it is not available in Python 3Hugo2019-10-191-1/+1
| | | | https://docs.python.org/2/reference/datamodel.html#object.__getslice__
* Upgrade Python syntax with pyupgrade --py3-plusHugo2019-10-191-2/+2
|
* Fixes #368 - Avoid crashing when exporting empty string in ReSTClaude Paroz2019-10-191-11/+29
|
* Fix some linting errorsPeyman Salehi2019-10-191-2/+1
|
* Drop python 2 supportPeyman Salehi2019-10-192-21/+9
| | | | | | | Remove support python 2 from doc, requirements.txt and config Replace unicode with str Remove dbfpy folder and rename dbfpy3 to dbfpy Remove compat file and remove python2 packages from dependency
* Refs #250 - Test that commas embedded in quoted strings can be importedClaude Paroz2019-10-191-0/+10
|
* Add project release config and cleanup project setup. (#398)Jannis Leidel2019-10-182-0/+1115
* Add project release config and use Travis build stages. Refs #378. * Restructure project to use src/ and tests/ directories. * Fix testing. * Remove eggs. * More fixes. - isort and flake8 config - manifest template update - tox ini extension - docs build fixes - docs content fixes * Docs and license cleanup.