Kallithea issues archive

Issue #20: Release 0.1 doesn't work with latest dulwich on Python 2.6

Reported by: Benoit Nadeau
State: resolved
Created on: 2014-08-26 18:26
Updated on: 2014-09-07 23:25

Description

setup.py should point to version 0.9.5 of dulwich if Python < 2.7, since dulwich 0.9.6 dropped support for Python 2.6: https://github.com/jelmer/dulwich/blob/080000bc8df2e12cf39eaac6dbd3dad44a671afe/NEWS . Otherwise, with the latest version of dulwich, paster setup-db fails with:

2014-08-26 13:59:45,529 INFO sqlalchemy.engine.base.Engine ()
Traceback (most recent call last):
[...]
  File "/root/dist/v/lib/python2.6/site-packages/dulwich/config.py", line 31, in <module>
    from collections import (
ImportError: cannot import name OrderedDict

To fix this, I ran the following:

easy_install -mxN dulwich
easy_install dulwich==0.9.5

Attachments

Comments

Comment by Mads Kiilerich, on 2014-08-26 18:42

@jelmer ?

Comment by Mads Kiilerich, on 2014-09-07 23:25

Fix was committed.