File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3
3
Release History
4
4
---------------
5
5
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
+
6
12
0.8.10 (2019-01-08)
7
13
+++++++++++++++++++
8
14
Original file line number Diff line number Diff line change 2
2
3
3
from docx .api import Document # noqa
4
4
5
- __version__ = ' 0.8.10'
5
+ __version__ = " 0.8.11"
6
6
7
7
8
8
# 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):
21
21
# Read the version from docx.__version__ without importing the package
22
22
# (and thus attempting to import packages it depends on that may not be
23
23
# 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 )
25
25
26
26
27
27
NAME = "python-docx"
You can’t perform that action at this time.
0 commit comments