Skip to content

Commit

Permalink
Replace mentions of IPython notebook with Jupyter notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfobel committed May 25, 2017
1 parent 7cbd3cf commit f6a42f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ requirements:
- sympy
- task-scheduler
- tornado
- wheeler.pygtkhelpers >=0.15
- wheeler.pygtkhelpers >=0.16
- zmq-plugin >=0.2.post2

run:
Expand Down Expand Up @@ -108,7 +108,7 @@ requirements:
- sympy
- task-scheduler
- tornado
- wheeler.pygtkhelpers >=0.15
- wheeler.pygtkhelpers >=0.16
- zmq-plugin >=0.2.post2

about:
Expand Down
8 changes: 4 additions & 4 deletions microdrop/gui/experiment_log_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self):
# Callback methods
def on_app_exit(self):
self.save()
logger.info('[ExperimentLogController] Killing IPython notebooks')
logger.info('[ExperimentLogController] Killing Jupyter notebooks')
if self.notebook_manager_view is not None:
self.notebook_manager_view.stop()

Expand Down Expand Up @@ -202,14 +202,14 @@ def on_plugin_enable(self):

app_values = self.get_app_values()

# Create buttons to manage background IPython notebook sessions.
# Create buttons to manage background Jupyter notebook sessions.
# Sessions are killed when microdrop exits.
self.notebook_manager_view = NotebookManagerView()
self.apply_notebook_dir(app_values['notebook_directory'])

vbox = self.builder.get_object('vbox1')
hbox = gtk.HBox()
label = gtk.Label('IPython notebook:')
label = gtk.Label('Jupyter notebook:')
hbox.pack_start(label, False, False)
hbox.pack_end(self.notebook_manager_view.widget, False, False)
vbox.pack_start(hbox, False, False)
Expand Down Expand Up @@ -344,7 +344,7 @@ def apply_notebook_dir(self, notebook_directory):
'static'))
skeleton_dir.joinpath('notebooks').copytree(notebook_directory)
self.previous_notebook_dir = notebook_directory
# Set the default template directory of the IPython notebook manager
# Set the default template directory of the Jupyter notebook manager
# widget to the notebooks directory.
self.notebook_manager_view.template_dir = notebook_directory

Expand Down
2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'pyutilib.component.loader>=3.3.1', 'pyyaml', 'pyzmq',
'run-exe>=0.5', 'si-prefix>=0.4.post10', 'scipy',
'svgwrite', 'svg-model>=0.6', 'task_scheduler',
'tornado', 'wheeler.pygtkhelpers>=0.15',
'tornado', 'wheeler.pygtkhelpers>=0.16',
'zmq-plugin>=0.2.post2']

if platform.system() == 'Windows':
Expand Down

0 comments on commit f6a42f5

Please sign in to comment.