I reviewed the outstanding issues marked for release 0.1 today. I took
the liberty to change the Muppy Test docstrings to unify the test output
(Issue 17). The PySizer site is available again (Issue 18), and the
Python2.4 problem in setup.py seems to be fixed by Jean (Issue 19). The
three issues have been closed, feel free to reopen them if you disagree.
I'd like to let Robert comment on Issue 20. If it is not possible to fix
this without changing the test infrastructure, we could leave it alone
for now. I'd argue that this isn't release-critical, and we could work
on a more general solution for separating individual tests for the next
release (if that is actually the problem).
About uninstalling: Unfortunately, there does not seem to be a sane way
to uninstall manually installed Python modules like Pympler. What I have
done in the past, was to record the installed files with the record switch:
$ python setup.py install --record=install.log
Then uninstalling works like that:
$ xargs -a install.log rm -f
This is ok if you just want to install, test and immediately uninstall.
However, it is everything but pretty and you need to keep the log file
(and remember where) to uninstall. After all, you could as well look
where the files are stored and remove them.
Comments?
Ludwig
Please don't wait for me with rc1. The sphinx issue is just a
developer issue and seems to be only on my side. It does not
interfere with the usage of Pympler.