Skip to content

Commit

Permalink
Moved ipython and qtconsole to required dependencies in _deps.py
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Jan 20, 2017
1 parent 5755c60 commit e49761a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glue/_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ def version(self):
Dependency('matplotlib', 'Required for plotting', min_version='1.1'),
Dependency(
'pandas', 'Adds support for Excel files and DataFrames', min_version='0.13.1'),
Dependency('astropy', 'Used for FITS I/O, table reading, and WCS Parsing'))
Dependency('astropy', 'Used for FITS I/O, table reading, and WCS Parsing'),
Dependency('ipython', 'Needed for interactive IPython terminal', min_version='4'),
Dependency('qtconsole', 'Needed for interactive IPython terminal'))

general = (
Dependency('dill', 'Used when saving Glue sessions'),
Expand All @@ -148,9 +150,7 @@ def version(self):


ipython = (
Dependency('IPython', 'Needed for interactive IPython terminal'),
Dependency('ipykernel', 'Needed for interactive IPython terminal'),
Dependency('qtconsole', 'Needed for interactive IPython terminal'),
Dependency('traitlets', 'Needed for interactive IPython terminal'),
Dependency('pygments', 'Needed for interactive IPython terminal'),
Dependency('zmq', 'Needed for interactive IPython terminal', 'pyzmq'))
Expand Down

0 comments on commit e49761a

Please sign in to comment.