I just released version 1.5.1 of Elpy, the Emacs Python Development Environment. This is a bug fix release.
Elpy is an Emacs package to bring powerful Python editing to Emacs. It combines a number of other packages, both written in Emacs Lisp as well as Python.
Quick Installation
Evaluate this:
(require 'package)
(add-to-list 'package-archives
'("elpy" .
"http://jorgenschaefer.github.io/packages/"))
Then run M-x package-install RET elpy RET
.
Finally, run the following (and add them to your .emacs
):
(package-initialize)
(elpy-enable)
Changes in 1.5.1
- Fix a bug where company-mode might get confused about the current backend, leading to an error about Symbol’s function definition is void: nil
- Fix Rope so it won’t search the whole project directory. This was an intended feature in v1.5 which did not work originally.
- Use yas-text instead of text in snippets for compatibility with the unreleased yasnippet from MELPA (thanks to Daniel Wu!)