File tree 4 files changed +3
-25
lines changed
4 files changed +3
-25
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
12
12
### Fixed
13
13
- Fix job not ending if forked processes still running.
14
14
15
+ ### Removed
16
+ - Removed support for Anaconda Notebook extensions.
17
+
15
18
## [ 1.0.1] - 2018-01-03
16
19
### Changed
17
20
- Updated date in ` LICENSE.txt ` .
Original file line number Diff line number Diff line change @@ -19,10 +19,6 @@ OnDemand node):
19
19
20
20
** Optional** software:
21
21
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.
26
22
- [ Lmod] ( https://www.tacc.utexas.edu/research-development/tacc-projects/lmod )
27
23
6.0.1+ or any other ` module purge ` and ` module load <modules> ` based CLI
28
24
used to load appropriate environments within the batch job before launching
Original file line number Diff line number Diff line change @@ -27,18 +27,6 @@ attributes:
27
27
# modules: "python/3.5 cuda/8.0.44"
28
28
modules : " python"
29
29
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
-
42
30
# Any extra command line arguments to feed to the `jupyter notebook ...`
43
31
# command that launches the Jupyter notebook within the batch job
44
32
extra_jupyter_args : " "
@@ -54,7 +42,6 @@ attributes:
54
42
# Dashboard
55
43
form :
56
44
- modules
57
- - conda_extensions
58
45
- extra_jupyter_args
59
46
- bc_account
60
47
- bc_queue
Original file line number Diff line number Diff line change @@ -54,13 +54,5 @@ c.NotebookApp.open_browser = False
54
54
c.NotebookApp.allow_origin = '*'
55
55
c.NotebookApp.notebook_dir = '${HOME}'
56
56
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 -%>
65
57
EOL
66
58
)
You can’t perform that action at this time.
0 commit comments