Modify ↓
#8920 closed defect (fixed)
Install requirements pull dev release of Trac
Reported by: | Owned by: | izzy | |
---|---|---|---|
Priority: | low | Component: | LogViewerPlugin |
Severity: | minor | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
Installing this plugin on 0.12 causes easy_install to look for a version <0.12, and the candidate that it picks is the 0.12 dev version. This is more of a problem with the easy_install parameter handling, but an FYI.
Attachments (0)
Note: See
TracTickets for help on using
tickets.
The problem ist that the
install_requires
parameter insetup.py
specifies"Trac<0.12"
. Since the plugin works perfectly with Trac 0.12, it should be something like"Trac<=0.12.99"
instead.This bit me when I uploaded this plugin as an egg file through the Admin Panel and it didn't show up in the list of plugins without any error message (except in the log file ;) ).