summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Remove pypy from tox.iniJon Dufresne2019-03-022-3/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The platform is not tested on Travis and it fails to run with: Processing ./.tox/dist/tablib-0.12.1.zip Collecting odfpy (from tablib==0.12.1) Collecting openpyxl>=2.4.0 (from tablib==0.12.1) Collecting backports.csv (from tablib==0.12.1) Using cached https://files.pythonhosted.org/packages/71/f7/5db9136de67021a6dce4eefbe50d46aa043e59ebb11c83d4ecfeb47b686e/backports.csv-1.0.6-py2.py3-none-any.whl Collecting xlrd (from tablib==0.12.1) Using cached https://files.pythonhosted.org/packages/b0/16/63576a1a001752e34bf8ea62e367997530dc553b689356b9879339cf45a4/xlrd-1.2.0-py2.py3-none-any.whl Collecting xlwt (from tablib==0.12.1) Using cached https://files.pythonhosted.org/packages/44/48/def306413b25c3d01753603b1a222a011b8621aed27cd7f89cbc27e6b0f4/xlwt-1.3.0-py2.py3-none-any.whl Collecting pyyaml (from tablib==0.12.1) Collecting pandas (from tablib==0.12.1) Using cached https://files.pythonhosted.org/packages/81/fd/b1f17f7dc914047cd1df9d6813b944ee446973baafe8106e4458bfb68884/pandas-0.24.1.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<module>", line 1, in <module> File "/tmp/pip-install-F5lmAg/pandas/setup.py", line 732, in <module> ext_modules=maybe_cythonize(extensions, compiler_directives=directives), File "/tmp/pip-install-F5lmAg/pandas/setup.py", line 475, in maybe_cythonize numpy_incl = pkg_resources.resource_filename('numpy', 'core/include') File "tablib/.tox/pypy/site-packages/pkg_resources/__init__.py", line 1144, in resource_filename return get_provider(package_or_requirement).get_resource_filename( File "tablib/.tox/pypy/site-packages/pkg_resources/__init__.py", line 361, in get_provider __import__(moduleOrReq) ImportError: No module named numpy ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-F5lmAg/pandas/
* | Merge pull request #248 from jean/masterTimo Furrer2019-03-036-76/+136
|\ \ | | | | | | Editing while reading: punctuation, markup, linebreaks
| * \ Merge branch 'master' into masterJean Jordaan2019-03-03304-102041/+782
| |\ \ | |/ / |/| |
* | | Merge pull request #352 from jdufresne/wsParth Shandilya2019-03-0213-59/+51
|\ \ \ | |_|/ |/| | Trim trailing white space throughout the project
| * | Trim trailing white space throughout the projectJon Dufresne2019-03-0213-59/+51
|/ / | | | | | | | | | | Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines.
* | Merge pull request #350 from browniebroke/bugfix/invalid-ascii-csvTimo Furrer2019-03-027-20/+26
|\ \ | | | | | | Import ascii characters not valid with unicode literals - updated
| * | Add backports.csv to requirements.txtBruno Alla2019-03-021-0/+1
| | |
| * | Merge branch 'master' into bugfix/invalid-ascii-csvBruno Alla2019-03-0225-247/+599
| |\ \ | |/ / |/| | | | | | | | | | | | | | # Conflicts: # setup.py # tablib/compat.py # test_tablib.py
* | | Merge pull request #333 from hudgeon/masterTimo Furrer2019-03-023-3/+23
|\ \ \ | | | | | | | | Updated xlsx format to remove reference to openpyxl's deprecated get_active_worksheet
| * | | Add instructions for handling csv line endings in Windows in Python 3DougHudgeon2018-06-261-2/+14
| | | |
| * | | Instructions for opening Excel workbook and reading the first sheetDougHudgeon2018-06-251-0/+8
| | | |
| * | | Updated xlsx format to use openpyxl's .active propertyDougHudgeon2018-06-251-1/+1
| | | |
* | | | Merge pull request #348 from mloesch/jiraTimo Furrer2019-03-025-2/+68
|\ \ \ \ | | | | | | | | | | Add Jira table export
| * | | | Add Jira table exportMathias Loesch2019-01-235-2/+68
| | | | |
* | | | | Merge pull request #338 from lepuchi/hotfix/csv-new-lineTimo Furrer2019-03-021-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Handle case where there is an empty line in CSV
| * | | | | only add row if it existslepuchi2018-10-021-1/+1
| |/ / / /
* | | | | Merge pull request #344 from jdufresne/tox-pandasTimo Furrer2019-03-021-6/+3
|\ \ \ \ \ | | | | | | | | | | | | Include pandas dependency when testing with tox
| * | | | | Include pandas dependency when testing with toxJon Dufresne2019-01-011-6/+3
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows all tests to pass. As pandas is defined as an 'extra', use tox's 'extras' feature. This requires tox 2.4+, so document that as well. https://tox.readthedocs.io/en/latest/config.html#conf-extras
* | | | | Merge pull request #343 from jdufresne/odParth Shandilya2019-03-024-162/+3
|\ \ \ \ \ | | | | | | | | | | | | Remove vendored ordereddict package
| * | | | | Remove vendored ordereddict packageJon Dufresne2019-01-014-162/+3
| |/ / / / | | | | | | | | | | | | | | | | | | | | Now that Python 2.6 support has been dropped, can remove the vendored ordereddict package. Use the stdlib collections.OrderedDict instead.
* | | | | Merge pull request #339 from thombashi/replace_deprecated_methodParth Shandilya2019-03-023-2/+3
|\ \ \ \ \ | | | | | | | | | | | | Replace a deprecated method call
| * | | | | Replace a deprecated method callTsuyoshi Hombashi2018-10-063-2/+3
| |/ / / / | | | | | | | | | | | | | | | Workbook.remove_sheet method deprecated since openpyxl 2.4.0
* | | | | Merge pull request #346 from jdufresne/compatParth Shandilya2019-03-011-11/+5
|\ \ \ \ \ | | | | | | | | | | | | Remove unused compat entries
| * | | | | Remove unused compat entriesJon Dufresne2019-01-011-11/+5
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Organize both the Python2 & Python3 sections in the same order so they are easier to compare. Removed: - basestring - ifilter - bytes
* | | | | Merge pull request #345 from jdufresne/cacheParth Shandilya2019-03-011-0/+1
|\ \ \ \ \ | |/ / / / |/| | | | Enable pip cache in Travis CI
| * | | | Enable pip cache in Travis CIJon Dufresne2019-01-011-0/+1
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduce load on PyPI servers and slightly speed up builds. For more information, see: https://docs.travis-ci.com/user/caching/#pip-cache
* | | | Update README.rstKenneth Reitz2018-09-171-1/+1
| | | |
* | | | Update README.rstKenneth Reitz2018-09-171-0/+2
| | | |
* | | | ujson presence no longer breaks tablib (resolves #297) (#311)Maciej "RooTer" UrbaƄski2018-09-123-23/+1
| | | |
* | | | Fix: Circular reference detected error (#332)Bruno Soares2018-09-123-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rename function name * Add uuid handler on json dumps * Add myself to authors
* | | | reStructuredText (#336)Norman Hooper2018-09-125-2/+325
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * median for Python 2 * More compat * Support reStructuredText * Tests
* | | | Removed Python 3.3 support (#310)Claude Paroz2018-09-123-3/+1
| | | |
* | | | Typo: OSD -> ODSIuri de Silvio2018-09-121-1/+1
| | | | | | | | | | | | Fix #330
* | | | fix(): remove openpyxl warning by properly accessing cells (#296)Gregory Bataille2018-09-121-1/+1
|/ / /
* | | update install instructionsKenneth Reitz2017-09-012-4/+4
| | | | | | | | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
* | | next versionv0.12.1Kenneth Reitz2017-09-011-2/+2
| | |
* | | Merge pull request #307 from audiolion/make-pandas-optionalKenneth Reitz2017-09-013-3/+14
|\ \ \ | | | | | | | | Make pandas optional
| * | | Change how travis installs to get all test dependenciesRyan Castner2017-09-011-1/+1
| | | |
| * | | Raise NotImplementedError if pandas is not installedRyan Castner2017-09-011-1/+10
| | | |
| * | | Make pandas an optional installRyan Castner2017-09-011-1/+3
|/ / /
* | | Update index.rstKenneth Reitz2017-08-281-1/+1
| | |
* | | Update tutorial.rstKenneth Reitz2017-08-281-8/+8
| | |
* | | Update index.rstKenneth Reitz2017-08-281-3/+3
| | |
* | | Update README.rstKenneth Reitz2017-08-281-6/+6
| | |
* | | update docsKenneth Reitz2017-08-272-2/+9
| | | | | | | | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
* | | bunk requirements filev0.12.0Kenneth Reitz2017-08-271-0/+21
| | | | | | | | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
* | | Merge branch 'master' of github.com:kennethreitz/tablibKenneth Reitz2017-08-271-5/+15
|\ \ \
| * | | Update README.rstKenneth Reitz2017-08-271-1/+1
| | | |
| * | | Update README.rstKenneth Reitz2017-08-271-2/+2
| | | |
| * | | Update README.rstKenneth Reitz2017-08-271-0/+1
| | | |