Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 035e19b

Browse files
authored
Merge pull request #14254 from tacaswell/merge_up_30x
MNT: Merge up v3.0.x and v3.0.0-doc branch to v3.1.x
2 parents 94c1b43 + c308cb1 commit 035e19b

File tree

7 files changed

+499
-2
lines changed

7 files changed

+499
-2
lines changed

doc/_static/mpl.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,12 @@ figcaption {
869869
}
870870

871871

872+
873+
#plotting-contest a {
874+
color: #fff;
875+
text-decoration:underline;
876+
}
877+
872878
/* "Go to released version" message. */
873879
#unreleased-message {
874880
background: #d62728;

doc/_templates/layout.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,11 @@ <h3>{{ _('Navigation') }}</h3>
184184
</a>
185185
</div>
186186
{%- endif %}
187+
<div id="plotting-contest" style="padding: 6px; background-color: teal; color: white;">
188+
<p style="margin: 0;">The 2019 SciPy John Hunter Excellence in Plotting Contest is accepting submissions!
189+
<br />
190+
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe-_AnKvYSzeQWfNDRoXgW0vl7_8q6jj3QbLIac8eUcb9lSAA/viewform?usp=sf_link" style="font-weight: bold;">Apply by June 8th</a></p>
191+
</div>
187192

188193
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px; position: relative;">
189194
{%- if builder in ('htmlhelp', 'devhelp', 'latex') %}

doc/citing.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ pp. 90-95, 2007 <https://doi.org/10.1109/MCSE.2007.55>`_.
2727
2828
DOIs
2929
----
30+
31+
v3.0.3
32+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2577644.svg
33+
:target: https://doi.org/10.5281/zenodo.2577644
34+
v3.0.2
35+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1482099.svg
36+
:target: https://doi.org/10.5281/zenodo.1482099
37+
v3.0.1
38+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1482098.svg
39+
:target: https://doi.org/10.5281/zenodo.1482098
3040
v3.0.0
3141
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1420605.svg
3242
:target: https://doi.org/10.5281/zenodo.1420605

doc/users/github_stats.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1250,3 +1250,15 @@ Issues (161):
12501250
* :ghissue:`11587`: Missing filled contours when using contourf
12511251
* :ghissue:`11716`: errorbar pickling fails when specifying y error bars
12521252
* :ghissue:`11557`: Hoping add a drawing function 'patch' in matplotlib
1253+
1254+
1255+
1256+
Previous Github Stats
1257+
---------------------
1258+
1259+
1260+
.. toctree::
1261+
:maxdepth: 1
1262+
:glob:
1263+
1264+
prev_whats_new/github_stats_*

doc/users/prev_whats_new/github_stats_3.0.2.rst

Lines changed: 464 additions & 0 deletions
Large diffs are not rendered by default.

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def xkcd(scale=1, length=100, randomness=2):
397397

398398
from matplotlib import patheffects
399399
return rc_context({
400-
'font.family': ['xkcd', 'Humor Sans', 'Comic Sans MS'],
400+
'font.family': ['xkcd', 'xkcd Script', 'Humor Sans', 'Comic Sans MS'],
401401
'font.size': 14.0,
402402
'path.sketch': (scale, length, randomness),
403403
'path.effects': [patheffects.withStroke(linewidth=4, foreground="w")],

tools/gh_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def get_auth_token():
7171
return token
7272

7373
def make_auth_header():
74-
return {'Authorization': 'token ' + get_auth_token()}
74+
return {'Authorization': 'token ' + get_auth_token().replace("\n","")}
7575

7676
def post_issue_comment(project, num, body):
7777
url = 'https://api.github.com/repos/{project}/issues/{num}/comments'.format(project=project, num=num)

0 commit comments

Comments
 (0)