##// END OF EJS Templates
Remove the 'fresh clone' step of the release process...
Remove the 'fresh clone' step of the release process We already clean the repository in step 3. Since the big split, there are fewer complexities in the repo that can cause problems in packaging, and I think this step is overkill. This is part of my effort to simplify the release procedure, as I feel like I'm spending a lot of time cutting releases nowadays.

File last commit:

r16114:15cc5a8e
r23434:15a9b632
Show More
inline_figshow.py
23 lines | 583 B | text/x-python | PythonLexer
"""Manual test for figure.show() in the inline matplotlib backend.
This script should be loaded for interactive use (via %load) into a qtconsole
or notebook initialized with the inline backend.
Expected behavior: only *one* copy of the figure is shown.
For further details:
https://github.com/ipython/ipython/issues/1612
https://github.com/matplotlib/matplotlib/issues/835
"""
import numpy as np
import matplotlib.pyplot as plt
plt.ioff()
x = np.random.uniform(-5, 5, size=(100))
y = np.random.uniform(-5, 5, size=(100))
f = plt.figure()
plt.scatter(x, y)
plt.plot(y)
f.show()