File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 33 Release History
44---------------
55
6+ 0.8.11 (2021-05-15)
7+ +++++++++++++++++++
8+
9+ - Small build changes and Python 3.8 version changes like collections.abc location.
10+
11+
6120.8.10 (2019-01-08)
713+++++++++++++++++++
814
Original file line number Diff line number Diff line change 22
33from docx .api import Document # noqa
44
5- __version__ = ' 0.8.10'
5+ __version__ = " 0.8.11"
66
77
88# register custom Part classes with opc package reader
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def text_of(relpath):
2121# Read the version from docx.__version__ without importing the package
2222# (and thus attempting to import packages it depends on that may not be
2323# installed yet)
24- version = re .search (" __version__ = ' ([^' ]+)'" , text_of ("docx/__init__.py" )).group (1 )
24+ version = re .search (r' __version__ = " ([^" ]+)"' , text_of ("docx/__init__.py" )).group (1 )
2525
2626
2727NAME = "python-docx"
You can’t perform that action at this time.
0 commit comments