You can ignore that. It is produced by the repoze auth modules, so you
can't change that anyway. With more recent versions of TG/SA/repoze it
should not appear any more.
-- Christoph
No, TG 2.1.x itself works fine on Python 2.4. But it seems you have
installed newer versions of external packages that are not compatible
(e.g. transaction 1.2.0 instead of 1.1.1). You should install TG 2.1.1
with the "certified" versions on our package index:
easy_install -i http://tg.gy/2.1.1/ tg.devtools
Better, use the current version 2.1.4:
easy_install -i http://tg.gy/current/ tg.devtools
-- Christoph
Hm, at first I thought this is because spaces are missing, it should be
easy_install -i http://tg.gy/2.1.1/ tg.devtools
But then I tested it and you're right, TG2 2.1.4 gets installed instead
of TG2 2.1.1. I looked into it and I think what happens is this:
easy_install first properly installs tg.devtools 2.1.1 from our package
index. But when it continues to install the dependencies (and TG2 is the
first dependency of tg.devools), it uses the current (2.1.4) index
instead of the 2.1.1 index. This is because the dependency_links setting
in setup.py (of both tg.devtools and TG2) points to the current index
instead of the 2.1.1 index, and it seems that dependency_links overrules
the package index given with the -i option.
So it seems our old indexes have been rendered useless by the
dependency_links setting (which was introduced in 2.1.1 first).
You will probably need to manually download tg.devtools and TurboGears2
from http://tg.gy/2.1.1/, adapt the dependency_links setting from
current to 2.1.1 and then install these manually with setup.py install,
if you really want to have TG 2.1.1 with the certified dependencies.
Maybe somebody else has a better idea? How should this be fixed?
-- Christoph
-- Christoph
--
You received this message because you are subscribed to the Google Groups "TurboGears" group.
To post to this group, send email to turbo...@googlegroups.com.
To unsubscribe from this group, send email to turbogears+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.