-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR: Remove support for PyQt4 #6961
Changes from 5 commits
dd425bc
7b32726
d26b1e3
f95dcef
c4680e2
339cf54
5d58b62
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,9 +133,7 @@ The requirements to run Spyder are: | |
|
||
* `Python <http://www.python.org/>`_ 2.7 or >=3.3 | ||
|
||
* `PyQt5 <https://www.riverbankcomputing.com/software/pyqt/download5>`_ >=5.2 or | ||
`PyQt4 <https://www.riverbankcomputing.com/software/pyqt/download>`_ >=4.6.0 | ||
(PyQt5 is recommended). | ||
* `PyQt5 <https://www.riverbankcomputing.com/software/pyqt/download5>`_ >=5.5 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doc changes; see top level comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ccordoba12 Just FYI, if you don't get to it before I do my pass for baseline correctness updates (which will happen as soon as we resolve spyder-ide/spyder-docs#14 ) I can just do it as one part of that, as it is a close fit for the purpose and scope of the issue its resolving. |
||
|
||
* `Qtconsole <http://jupyter.org/qtconsole/stable/>`_ >=4.2.0 -- for an | ||
enhanced Python interpreter. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,6 @@ Key features: | |
* :doc:`projects` | ||
|
||
|
||
Spyder may also be used as a PyQt5 or PyQt4 extension library | ||
(module 'spyder'). For example, the Python interactive shell widget | ||
used in Spyder may be embedded in your own PyQt5 or PyQt4 application. | ||
Spyder may also be used as a PyQt5 extension library (module | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More doc changes. |
||
'spyder'). For example, the Python interactive shell widget | ||
used in Spyder may be embedded in your own PyQt5 application. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -233,15 +233,15 @@ def run(self): | |
long_description= | ||
"""Spyder is an interactive Python development environment providing | ||
MATLAB-like features in a simple and light-weighted software. | ||
It also provides ready-to-use pure-Python widgets to your PyQt5 or | ||
PyQt4 application: source code editor with syntax highlighting and | ||
It also provides ready-to-use pure-Python widgets to your PyQt5 | ||
application: source code editor with syntax highlighting and | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be "A source code editor" |
||
code introspection/analysis features, NumPy array editor, dictionary | ||
editor, Python console, etc.""", | ||
download_url='%s/files/%s-%s.zip' % (__project_url__, NAME, __version__), | ||
author="The Spyder Project Contributors", | ||
url=__project_url__, | ||
license='MIT', | ||
keywords='PyQt5 PyQt4 editor shell console widgets IDE', | ||
keywords='PyQt5 editor shell console widgets IDE', | ||
platforms=['any'], | ||
packages=get_packages(), | ||
package_data={LIBNAME: get_package_data(LIBNAME, EXTLIST), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does
(deprecated)
refer to here? Before it referred to the deprecatedpyside
support but that was deleted, so since PyQt5 is (hopefully) not deprecated also we can presumably delete that parenthetical?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I have to remove that deprecated.