File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed
Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 33 Release History
44---------------
55
6+ 0.4.0 (2014-03-01)
7+ ++++++++++++++++++
8+
9+ - Advance from alpha to beta status.
10+ - Add pure-python image header parsing; drop Pillow dependency
11+
12+
6130.3.0a5 (2014-01-10)
714++++++++++++++++++++++
815
Original file line number Diff line number Diff line change 1010 @echo " accept run acceptance tests using behave"
1111 @echo " clean delete intermediate work product and start fresh"
1212 @echo " coverage run nosetests with coverage"
13- @echo " docs generate documentation
13+ @echo " docs generate documentation"
1414 @echo " readme update README.html from README.rst"
1515 @echo " register update metadata (README.rst) on PyPI"
1616 @echo " test run tests using setup.py"
Original file line number Diff line number Diff line change @@ -4,20 +4,14 @@ Installing
44==========
55
66.. note :: python-docx versions 0.3.0 and later are not API-compatible with
7- prior versions. Alpha users are encouraged to install in a virtualenv if
8- they wish to continue using an installed prior version.
7+ prior versions.
98
109|docx | is hosted on PyPI, so installation is relatively simple, and just
1110depends on what installation utilities you have installed.
1211
1312|docx | may be installed with ``pip `` if you have it available::
1413
15- pip install --pre python-docx
16-
17- Note the ``--pre `` flag, which is required by recent versions of ``pip `` to
18- install pre-release versions, those with a version string having an alpha
19- suffix like ``0.3.0a1 ``. This protects the unsuspecting from upgrading to
20- a pre-release version.
14+ pip install python-docx
2115
2216|docx | can also be installed using ``easy_install ``, although this is
2317discouraged::
Original file line number Diff line number Diff line change 22
33from docx .api import Document # noqa
44
5- __version__ = '0.3.0a5 '
5+ __version__ = '0.4.0 '
66
77
88# register custom Part classes with opc package reader
You can’t perform that action at this time.
0 commit comments