Skip to content

Commit e762d0e

Browse files
committed
Merge branch 'v1.4.2' into v1.4.x
Conflicts: lib/matplotlib/__init__.py White-space conflicts
2 parents 862b2c3 + 09fe199 commit e762d0e

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

doc/_templates/layout.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,17 @@ <h3>{{ _('Navigation') }}</h3>
245245
href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
246246
{%- endif %}
247247
</div>
248-
{%- endblock %}
248+
{%- endblock %}
249+
250+
<script>
251+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
252+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
253+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
254+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
255+
256+
ga('create', 'UA-55954603-1', 'auto');
257+
ga('send', 'pageview');
249258

259+
</script>
250260
</body>
251261
</html>

lib/matplotlib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
import distutils.version
108108
from itertools import chain
109109

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

113113
try:
114114
import dateutil

setupext.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,10 @@ def get_base_dirs():
147147
return options['basedirlist']
148148

149149
basedir_map = {
150-
'win32': ['win32_static',],
151-
'darwin': ['/usr/local/', '/usr', '/usr/X11', '/opt/local'],
152-
'sunos5': [os.getenv('MPLIB_BASE') or '/usr/local',],
150+
'win32': ['win32_static', ],
151+
'darwin': ['/usr/local/', '/usr', '/usr/X11',
152+
'/opt/X11', '/opt/local'],
153+
'sunos5': [os.getenv('MPLIB_BASE') or '/usr/local', ],
153154
'gnu0': ['/usr'],
154155
'aix5': ['/usr/local'],
155156
}

0 commit comments

Comments
 (0)