Ticket #1816 (closed defect: wontfix)

Opened 7 months ago

Last modified 6 months ago

easy_install fails on CentOS 4.6 (python 2.3.4)

Reported by: aweraw Assigned to: anonymous
Priority: normal Milestone: 1.5
Component: Installation Version: 1.0.4.4
Severity: normal Keywords:
Cc:

Description

I had trouble installing TurboGears on CentOS 4.6 using the disto provided easy_install

The problem appears to have been with configobj 4.5.2 and python 2.3.4. I was able to get every thing working by manually downloading and installing configobj. However to sucessfully install configobj, I had to fix line 627 of validate.py:

fun_kwargs = dict((str(key), value) for (key, value) in fun_kwargs.items())

changed to:

fun_kwargs = dict([(str(key), value) for (key, value) in fun_kwargs.items()])

Change History

06/06/08 02:08:28 changed by faide

  • status changed from new to closed.
  • resolution set to wontfix.

anyone else got problem with ConfigObj? ?

Maybe this should be reported to the ConfigObj? maintainers:

http://www.voidspace.org.uk/python/configobj.html