Skip to content
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: Update Rope to 0.10.5+ #4602

Merged
merged 3 commits into from
Jun 15, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ a Python version greater than 2.7 (Python 3.2 is not supported anymore).
* **Python** 2.7 or 3.3+
* **PyQt5** 5.2+ or **PyQt4** 4.6+: PyQt5 is recommended.
* **qtconsole** 4.2.0+: Enhanced Python interpreter.
* **Rope** and **Jedi**: Editor code completion, calltips
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's also add here

and Jedi 0.9.0+: ...

* **Rope** 0.10.5+ and **Jedi**: Editor code completion, calltips
and go-to-definition.
* **Pyflakes**: Real-time code analysis.
* **Sphinx**: Rich text mode for the Help pane.
Expand Down
3 changes: 1 addition & 2 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ requirements:
- python.app # [osx]
- pyqt >=5.6.0 # [osx]
- pyqt # [not osx]
- rope 0.9.* # [py34 or py35]
- rope # [py27]
- rope >=0.10.5
- pyflakes
- jedi
- qtconsole >=4.2.0
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ The requirements to run Spyder are:
* `Qtconsole <http://jupyter.org/qtconsole/stable/>`_ >=4.2.0 -- for an
enhanced Python interpreter.

* `Rope <http://rope.sourceforge.net/>`_ >=0.9.4 and
* `Rope <http://rope.sourceforge.net/>`_ >=0.10.5 and
`Jedi <http://jedi.jedidjah.ch/en/latest/>`_ >=0.9.0 -- for code completion,
go-to-definition and calltips on the Editor.

Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rope>=0.9.4
rope>=0.10.5
jedi>=0.9.0
pyflakes
pygments>=2.0
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def run(self):
import setuptools # analysis:ignore

install_requires = [
'rope_py3k' if PY3 else 'rope>=0.9.4',
'rope>=0.10.5',
'jedi>=0.9.0',
'pyflakes',
'pygments>=2.0',
Expand Down