Skip to content
Snippets Groups Projects

CI: Replace minimal-ubuntu job with ubuntu

Compare and
27 files
+ 215
91
Compare changes
  • Side-by-side
  • Inline

Files

``` python
``` python
import requests
try:
import imageio
import requests
from io import BytesIO
import imageio
from io import BytesIO
response = requests.get("https://www.python.org/static/img/python-logo.png")
img = imageio.imread(BytesIO(response.content)).astype(np.double)
response = requests.get("https://www.python.org/static/img/python-logo.png")
img /= img.max()
img = imageio.imread(BytesIO(response.content)).astype(np.double)
plt.imshow(img);
img /= img.max()
 
plt.imshow(img);
 
except ImportError:
 
print("No requests installed")
 
img = np.random.random((82, 290, 4))
%% Cell type:code id: tags:
%% Cell type:code id: tags:
Loading