Hi all
I have just upgraded pythonista to v3.2.
Unfortunately, this version broke pretty much all my scripts. :(
When I run something with matplotlib and python 2, pythonista crashes badly.
Even the simple example below crashes pythonista (if I use python 2) when it reaches the 'show' method. Python3 seems to work with this example (but I have way too much code to migrate to Python3 in the short run).
I need to find a way to downgrade pythonista to the previous version. Oh well.
Anyway, keep up the good work. This is an amazing IDE for iOS.
import numpy as np
import matplotlib.pyplot as plt
if __name__=='__main__':
x,y,c = zip(*np.random.rand(30,3)*4-2)
plt.plot(x,y,label="plop")
plt.show()