Skip to content

Commit 5a7a83b

Browse files
committed
prepare for v0.0.6 release
1 parent 4e9d10f commit 5a7a83b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ pyexcel-ods3 - Let you focus on data, instead of ods format
88
.. image:: https://codecov.io/github/chfw/pyexcel-ods3/coverage.png
99
:target: https://codecov.io/github/chfw/pyexcel-ods3
1010

11+
.. image:: https://pypip.in/version/pyexcel-ods3/badge.png
12+
:target: https://pypi.python.org/pypi/pyexcel-ods3
13+
1114
.. image:: https://pypip.in/d/pyexcel-ods3/badge.png
1215
:target: https://pypi.python.org/pypi/pyexcel-ods3
1316

@@ -25,6 +28,8 @@ pyexcel-ods3 - Let you focus on data, instead of ods format
2528
Known constraints
2629
==================
2730

31+
Only when `the custom version of ezodf <https://github.com/chfw/ezodf>`__ is installed, this library would (0.0.2+) support files in memory. **pyexcel-ods3 v0.0.1** does not support memory file.
32+
2833
Fonts, colors and charts are not supported.
2934

3035
Installation
@@ -48,7 +53,6 @@ The installation of `lxml` will be tricky on Widnows platform. It is recommended
4853
Constaint
4954
==========
5055

51-
**pyexcel-ods3 v0.0.1** does not support memory file. But new versions(0.0.2+) supports meomory file unless `my version of ezodf <https://github.com/chfw/ezodf>`__ is installed
5256

5357
Usage
5458
=====

pyexcel_ods3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,4 @@ def close(self):
216216
# to allow this module to function independently
217217
pass
218218

219-
__VERSION__ = "0.0.5"
219+
__VERSION__ = "0.0.6"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name='pyexcel-ods3',
1313
author="C. W.",
14-
version='0.0.5',
14+
version='0.0.6',
1515
author_email="[email protected]",
1616
url="https://github.com/chfw/pyexcel-ods3",
1717
description='A wrapper library to read, manipulate and write data in ods format',

test.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nosetests --with-cov --with-doctest --doctest-extension=.rst
1+
nosetests --with-cov --cov pyexcel_ods3 --cov tests --with-doctest --doctest-extension=.rst

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nosetests --rednose --with-cov --with-doctest --doctest-extension=.rst
1+
nosetests --rednose --with-cov --cov pyexcel_ods3 --cov tests --with-doctest --doctest-extension=.rst

0 commit comments

Comments
 (0)