Skip to content
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.

Commit

Permalink
Update docs; remove PyQt5 dependency that breaks travis
Browse files Browse the repository at this point in the history
  • Loading branch information
nmearl committed Apr 5, 2017
1 parent c39e52c commit 4610e5f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
18 changes: 18 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,24 @@ You can specify by using ``pip2`` or ``pip3``, if you're not using a virtual
environment.


PyQt/PySide bindings
^^^^^^^^^^^^^^^^^^^^

SpecViz requires PyQt. Currently, only python environments with 3.5 or higher
installed can use ``pip`` to install PyQt5, in which case simply type::

$ pip install pyqt5

to install it on your system.

In any other case, PyQt can be installed via anaconda::

$ conda install pyqt

SpecViz works with with PyQt4 and PySide, but it is recommended that users use
PyQt5 if available.


Uninstalling
^^^^^^^^^^^^

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ sphinx_automodapi
sphinx_rtd_theme
specutils
pyqtgraph
pyqt5; python_version >= '3.5'
qtpy
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@
'scipy',
'qtpy'
],
extras_require={
':python_version >= "3.5"': [
'pyqt5',
],
},
# extras_require={
# ':python_version >= "3.5"': [
# 'pyqt5',
# ],
# },
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
Expand Down

0 comments on commit 4610e5f

Please sign in to comment.