Skip to content

Commit 94d29b4

Browse files
author
Jeremy Nicklas
committed
removed conda extensions
The Anaconda Notebook extensions caused too many issues and most HPC centers that installed this app disabled them.
1 parent d1dd645 commit 94d29b4

File tree

4 files changed

+3
-25
lines changed

4 files changed

+3
-25
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
### Fixed
1313
- Fix job not ending if forked processes still running.
1414

15+
### Removed
16+
- Removed support for Anaconda Notebook extensions.
17+
1518
## [1.0.1] - 2018-01-03
1619
### Changed
1720
- Updated date in `LICENSE.txt`.

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ OnDemand node):
1919

2020
**Optional** software:
2121

22-
- [Anaconda](https://www.continuum.io/anaconda-overview) 4.3.13+ and its
23-
[Jupyter Notebook extensions](https://docs.continuum.io/anaconda/user-guide/tasks/use-jupyter-notebook-extensions)
24-
that allow users to define custom environment-based kernels from within the
25-
Jupyter notebook dashboard.
2622
- [Lmod](https://www.tacc.utexas.edu/research-development/tacc-projects/lmod)
2723
6.0.1+ or any other `module purge` and `module load <modules>` based CLI
2824
used to load appropriate environments within the batch job before launching

form.yml

-13
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,6 @@ attributes:
2727
# modules: "python/3.5 cuda/8.0.44"
2828
modules: "python"
2929

30-
# Whether Conda extensions will be available within the Jupyter notebook
31-
# server
32-
#
33-
# @note Allows the user to use conda environment-based kernels from their
34-
# Jupyter notebook dashboard
35-
# @example Do NOT allow Conda extensions to be used
36-
# conda_extensions: "0"
37-
# @example Do allow Conda extensions to be used
38-
# conda_extensions: "1"
39-
# @see https://docs.continuum.io/anaconda/user-guide/tasks/use-jupyter-notebook-extensions
40-
conda_extensions: "1"
41-
4230
# Any extra command line arguments to feed to the `jupyter notebook ...`
4331
# command that launches the Jupyter notebook within the batch job
4432
extra_jupyter_args: ""
@@ -54,7 +42,6 @@ attributes:
5442
# Dashboard
5543
form:
5644
- modules
57-
- conda_extensions
5845
- extra_jupyter_args
5946
- bc_account
6047
- bc_queue

template/before.sh.erb

-8
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,5 @@ c.NotebookApp.open_browser = False
5454
c.NotebookApp.allow_origin = '*'
5555
c.NotebookApp.notebook_dir = '${HOME}'
5656
c.NotebookApp.disable_check_xsrf = True
57-
<%- if context.conda_extensions == "1" -%>
58-
c.NotebookApp.kernel_spec_manager_class = "nb_conda_kernels.CondaKernelSpecManager"
59-
c.NotebookApp.nbserver_extensions = {
60-
"nb_conda": True,
61-
"nb_anacondacloud": True,
62-
"nbpresent": True
63-
}
64-
<%- end -%>
6557
EOL
6658
)

0 commit comments

Comments
 (0)