Own JS/CSS options

Saturday, April 27, 2013

Elpy 1.0 Released

I’m happy to announce that I just released version 1.0 of Elpy, the Emacs Python Development Environment. You can find a list of news since the last release below.

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:

(add-to-list 'package-archives
             '("marmalade" .
               "http://marmalade-repo.org/packages/"))

Then run M-x package-install RET elpy RET.

Finally, run the following (and add them to your .emacs):

(package-initialize)
(elpy-enable)

News

  • Version 0.9 was a release candidate, so this release focused on bug fixes instead of new features.
  • elpy-enable now takes an optional argument that skips variable initialization for those users who prefer their own defaults for other modes.
  • python-check.sh has been removed from elpy, as the flake8 tool from pypi does everything it does, only better.
  • Elpy will now start the helper subprocess in the root directory, avoiding accidental Python path clobbering.