Merge pull request #197 from yuvipanda/artful-emergency

Emergency Bump to artful
pull/190/merge
Chris Holdgraf 2018-01-17 18:15:27 -08:00 zatwierdzone przez GitHub
commit 6e9088d79e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
5 zmienionych plików z 4 dodań i 10 usunięć

Wyświetl plik

@ -10,7 +10,7 @@ import re
import docker
TEMPLATE = r"""
FROM buildpack-deps:zesty
FROM buildpack-deps:artful
# Set up locales properly
RUN apt-get update && \
@ -151,7 +151,6 @@ class BuildPack(LoggingConfigurable):
# FIXME: Use npm from nodesource!
# Everything seems to depend on npm these days, unfortunately.
"npm",
"nodejs-legacy"
},
help="""
Base set of apt packages that are installed for all images.

Wyświetl plik

@ -1,5 +0,0 @@
# A bunch of external datascience related repos we care about!
- name: Jake's Data Science Book
url: https://github.com/jakevdp/PythonDataScienceHandbook
ref: de0cc6bd31
verify: python -c 'import matplotlib'

Wyświetl plik

@ -1,4 +1,4 @@
FROM ubuntu:zesty
FROM ubuntu:artful
RUN apt-get update && apt-get install --yes python3

Wyświetl plik

@ -2,5 +2,5 @@
# Verify that the default just provides a py3 environment with jupyter
import sys
assert sys.version_info[:2] == (3, 5)
assert sys.version_info[:2] == (3, 6)
import jupyter

Wyświetl plik

@ -1,6 +1,6 @@
#!/usr/bin/env python
import sys
assert sys.version_info[:2] == (3, 5)
assert sys.version_info[:2] == (3, 6)
import numpy