Commit Graph

83 Commits

Author SHA1 Message Date
Humza M Shaheen
0b95fd35ff Update version of seaborn to 0.9.X 2018-07-19 11:28:55 +01:00
Min RK
d65fa651e0 bump some packages
- notebook 5.5
- matplotlib 2.2
- pandas 0.23
- scipy 1.1
- scikit-image 0.14
- statsmodels 0.9
2018-06-07 10:57:39 +02:00
John Kirkham
06792d930f Use MatchSpec to force blas from conda-forge
As it appears that `defaults` has added `blas` without a feature, the
`conda` solver appears to be prioritizing the removal of features over
channel priority. As a result, we leverage `MatchSpec` here to pin the
`blas` package to `conda-forge` and the `openblas` feature. This should
be respected by `conda` and thus avoid switching to the incompatible
`blas` package from `defaults`.
2018-06-02 12:59:10 -07:00
Braden Pellett
19828a046a Require at least blas 1.1
Require at least blas 1.1; otherwise other packages dependencies may
attempt to downgrade it.
2018-06-01 14:48:54 -07:00
Braden Pellett
ac04480084 Upgrade Ubuntu to latest LTS (Bionic 18.04)
Upgrade Ubuntu to latest LTS (Bionic 18.04), including:
- Change the IMAGE used for base-notebook;
- Keep Mesos install from Mesosphere's Xenial repository, since they
  don't yet have a Bionic repository;
- gnupg needs to be installed for apt-key to work;
- --force-yes option to apt-get has been removed;
- Package libav-tools is replaced by ffmpeg;
- Update Let's Encrypt example script to use 18.04.
2018-06-01 13:03:12 -07:00
Peter Parente
4514341948 Update scipy-notebook packages 2018-05-06 15:23:57 -04:00
Tudor
883557164f Update scikit-image to 0.13*
Release notes can be found here https://github.com/scikit-image/scikit-image/blob/master/doc/release/release_0.13.rst
2018-04-28 14:14:45 +02:00
Tudor
bfd82c5abf Update scikit-learn to 0.19*
Release notes can be found here http://scikit-learn.org/stable/whats_new.html#version-0-19-1
2018-04-28 14:14:15 +02:00
Tom Jorquera
a5d350fb0f Update jupyterlab and extensions
Update jupyterlab from 0.31 to 0.32.

Update the following extensions to matching versions:
- jupyterlab/hub-extension
- jupyter-widget/jupyterlab-manager
- jupyterlab_bokeh
2018-04-27 11:39:08 +02:00
Peter Parente
d289c08d09 Force all npm cache clean commands 2018-04-23 21:52:14 -04:00
Miguel Morales
621be73e6f Remove facets directory
The `cd` command switches to the user's home directory (away from the directory we want to delete)
Then we remove the facets directory using the full path
2018-04-23 16:07:52 -06:00
John Kirkham
a3edb4258d Use conda-forge's blas package w/openblas
As conda-forge does not use the `nomkl` package, but instead uses the
`blas` package to select BLAS versions, install the `blas` package and
select the `openblas` implementation.
2018-04-02 01:29:41 -04:00
Giovanni Lanzani
cc5ceae62c Add jupyterlab_bokeh extension
Without the extension it is not possible to use all Bokeh functionalities in JupyterLab
2018-03-14 09:10:49 +01:00
Graham Dumpleton
f4bf2ba525 Merge branch 'master' of github.com:jupyter/docker-stacks into writable-home-directory 2018-02-17 11:33:31 +11:00
Graham Dumpleton
4d32b2182e Ensure anything under $HOME is always writable to group. 2018-02-17 11:31:55 +11:00
Graham Dumpleton
770007bb10 Use NB_UID for USER statement in Dockerfile so deployment platform can verify that image doesn't run as root. 2018-02-15 11:11:32 +11:00
Chris Zubak-Skees
8cbf385b6d Upgrade ipywidgets in scipy for compatibility with 0.31 jupyterlab version 2018-02-04 13:19:11 -05:00
Peter Parente
ac82cac7e4 Fix missing @ in version 2017-12-29 20:19:09 -05:00
Peter Parente
3b5175b452 Fix missing jupyterlab-manager version 2017-12-29 19:58:19 -05:00
Peter Parente
463490fb26 MNT: Clean npm packages and JupyterLab artifacts
Spotted while writing tests
2017-11-30 00:16:09 -05:00
Troels Schwarz-Linnet
25d7ce281c Activate ipywidgets for JupyterLab. #505 2017-11-23 14:48:03 +01:00
cglewis
d91d4a8c48 MAINTAINER is deprecated, using LABEL now 2017-10-31 20:17:06 -07:00
Peter Parente
5ff64b45be Fix facets install
* Don't change WORKDIR
* Fix permissions after install
* Cleanup source tree
2017-09-09 14:00:15 -04:00
Yusaku Mandai
dc908ed47f Change starting directory of scipy-notebook 2017-09-09 19:45:40 +09:00
Naveen Marri
6bbf0939a0 changed the sys-prefix 2017-09-08 22:27:25 -04:00
Naveen Marri
3b9135df57 changed the sys-prefix 2017-09-08 19:10:59 -04:00
Naveen Marri
5cdc850799 Merge remote-tracking branch 'upstream/master' 2017-09-08 19:08:37 -04:00
Peter Parente
16e6d72cbf Merge pull request #452 from parente/bump-ipywidgets
Update ipywidgets to 7.0.x
2017-09-03 22:47:37 -04:00
Naveen Marri
cb5f67ee51 Added support for facets visualization 2017-09-02 20:19:57 -04:00
Peter Parente
5145670da6 Update ipywidgets to 7.0.x 2017-08-28 23:51:55 -04:00
Min RK
c6c1ce4cb0 use groups for managing write-access to files
- any files the user should be able to write should have group `user-permissions` with `g+rwX`
- remove `chown` from start.sh because it is no longer needed
- add `fix-permissions` script for setting the user-writable permissions on a path
- user-permissions group as GID 10000 (is there a reason for it to have a different value?)
- containers can set group with `--group-add user-writable` if they want to run with a different uid/gid
  (without -u root -e NB_UID -e NB_GID, which make this unnecessary)
2017-08-26 09:50:56 -04:00
Min RK
32b3d2bec2 Remove Python 2
Only Python 3 from now on
2017-08-10 16:08:30 +02:00
Min RK
e4c54c9002 finish removing files from $HOME
- mplimporthook should be obsolete with matplotlib 2.0
- curlrc seems to be obsolete now (updates to base image?)
- set WORKDIR to $HOME instead of $HOME/work (leave work there for compatibility)
2017-05-27 18:25:26 -07:00
Bas Nijholt
7e78c85f3e Bump matplotlib to 2.0 2017-03-13 15:16:41 +01:00
Bas Nijholt
71d8ceb747 Bumpy Python 2.7 packages too 2017-03-13 15:16:41 +01:00
Bas Nijholt
534fd4a956 Bump statsmodels to 0.8* 2017-03-13 15:16:41 +01:00
Bas Nijholt
b3288b4b8e Bump versions for Python 3.6 2017-03-13 15:16:41 +01:00
Jorge Valhondo Rama
0e717a6a19 update scikit-learn to latest release (v0.18*)
Enhancement
2017-01-17 12:41:13 +01:00
Peter Parente
0afcc8d133 Activate python2 conda environment in kernelspec
Fixes issues with python version mismatches when using Spark
2016-12-10 13:33:36 -05:00
EC2 Default User
a3106172f1 removing minor versions from beautifulsoup and vincent 2016-11-30 03:17:17 +00:00
Stephen Larson
778271650a removing pip (use conda install instead) 2016-11-29 18:07:31 -05:00
EC2 Default User
ab4ef258e8 add xlrd & pip 2016-11-29 21:52:07 +00:00
Stephen Larson
10a0d53773 add vincent and BeautifulSoup 2016-11-29 15:30:55 -05:00
Peter Parente
44b7637175 Don't mix mkl and open_blas packages
* Bump numexpr to 2.6 so it comes from conda-forge
* Install nomkl
2016-10-19 21:55:02 -05:00
Jianshen Liu
86b3406735 Update pandas to version 0.19* 2016-10-05 21:11:42 -07:00
danielballan
b15bf713aa Use Agg during fc-list build to avoid qt-related issues. 2016-09-28 14:22:30 -04:00
danielballan
2fee6f0881 ENV_NAME -> python2 2016-09-26 09:22:18 -04:00
danielballan
f063acc55e Build matplotlib font cache during docker build. 2016-09-26 09:05:18 -04:00
Peter Parente
f31c2c38e7 Update ipywidgets to 5.2 2016-09-21 20:38:41 -05:00
Tyler Erickson
be39a0abad Updated h5py conda package to version 2.6* 2016-08-10 13:50:31 -07:00