Skip to content

Commit 68b34b0

Browse files
committed
Merge pull request matplotlib#3621 from mdboom/issue3621
matplotlib.__version__: revert from unicode to native str
2 parents fd9451c + b91be6c commit 68b34b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@
106106
import sys
107107
import distutils.version
108108

109-
__version__ = '1.4.x'
110-
__version__numpy__ = '1.6' # minimum required numpy version
109+
__version__ = str('1.4.x')
110+
__version__numpy__ = str('1.6') # minimum required numpy version
111111

112112
try:
113113
import dateutil

0 commit comments

Comments
 (0)