Skip to content

Commit

Permalink
Fix openpyxl version to work around bug. Closes #391. Rev down to 0.9…
Browse files Browse the repository at this point in the history
….1 for imminent release.
  • Loading branch information
onyxfish committed Mar 31, 2015
1 parent 61b9c20 commit bf18815
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.0.0
0.9.1
-----

* Add Antonio Lima to AUTHORS.
Expand All @@ -11,6 +11,7 @@
* Add killer examples to doc index. (#328)
* Reorganize doc index
* Fix broken csvkit module documentation. (#327)
* Fix version of openpyxl to work around encoding issue. (#391, #288)

0.9.0
-----
Expand Down Expand Up @@ -115,7 +116,7 @@
* Optimize writing of eight bit codecs. (#175)
* Created csvpy. (#44)
* Support --not-columns for excluding columns. (#137)
* Add Jan Schulz to AUTHORS file.
* Add Jan Schulz to AUTHORS file.
* Add Windows scripts. (#111, #176)
* csvjoin, csvsql and csvstack will no longer hold open all files. (#178)
* Added Noah Hoffman to AUTHORS.
Expand All @@ -134,7 +135,7 @@
* Add Gregory Temchenko to AUTHORS.
* Add --no-create option to csvsql. (#148)
* Add Anton Ian Sipos to AUTHORS.
* Fix broken pipe errors. (#150)
* Fix broken pipe errors. (#150)

0.4.3
-----
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.0'
version = '0.9.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '0.9.1'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
2 changes: 1 addition & 1 deletion requirements-py2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python-dateutil==2.2
SQLAlchemy>=0.9.3
sphinx>=1.0.7
coverage>=3.5.1b1
openpyxl>=2.0.3
openpyxl==2.2.0-b1
tox>=1.3
dbf==0.95.004
unittest2==0.5.1
Expand Down
2 changes: 1 addition & 1 deletion requirements-py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python-dateutil>=2.2
SQLAlchemy>=0.9.3
sphinx>=1.0.7
coverage>=3.5.1b1
openpyxl>=2.0.3
openpyxl==2.2.0-b1
tox>=1.3
six>=1.6.1
sphinx_rtd_theme
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
install_requires = [
'xlrd>=0.7.1',
'sqlalchemy>=0.6.6',
'openpyxl>=2.0.3',
'openpyxl==2.2.0-b1',
'six>=1.6.1',
'python-dateutil==2.2'
]
Expand All @@ -21,7 +21,7 @@

setup(
name='csvkit',
version='1.0.0',
version='0.9.1',
description='A library of utilities for working with CSV, the king of tabular file formats.',
long_description=open('README').read(),
author='Christopher Groskopf',
Expand Down

0 comments on commit bf18815

Please sign in to comment.