Merge pull request #647 from betatim/unpin-pip

[MRG] Unpin pip again
pull/654/head
Min RK 2019-04-23 14:44:23 +02:00 zatwierdzone przez GitHub
commit eb551eb248
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -27,6 +27,9 @@ Bug fixes
buildpack in :pr:`633` by :user:`betatim`.
- Update to version 5.7.6 of the `notebook` package used in all environments
in :pr:`628` by :user:`betatim`.
- Switch to newer version of jupyter-server-proxy to fix websocket handling
in :pr:`646` by :user:`betatim`.
- Update to pip v19.0.3 in :pr:`647` by :user:`betatim`.
Version 0.8.0

Wyświetl plik

@ -63,7 +63,6 @@ class PythonBuildPack(CondaBuildPack):
if os.path.exists(requirements_file):
assemble_scripts.append((
'${NB_USER}',
'pip install "pip<19" && ' + \
'{} install --no-cache-dir -r "{}"'.format(pip, requirements_file)
))