neo4django:AttributeError:类型对象'Model'没有属性'__metaclass__'

时间:2013-05-25 07:08:00

标签: django-models neo4j neo4django

我只是在尝试neo4django的very own example,即

from neo4django.db import models

class Person(models.NodeModel):
    name = models.StringProperty()
    age = models.IntegerProperty()

    friends = models.Relationship('self',rel_type='friends_with')

但是,在运行python manage.py syncdb时,我收到以下错误:

AttributeError: type object 'Model' has no attribute '__metaclass__'

有什么想法吗?

(我会在Stackoverflow中使用标签“neo4django”,但它不允许我创建一个新标签)。

1 个答案:

答案 0 :(得分:2)

https://github.com/scholrly/neo4django/issues/143-我们不会支持Django 1.5+直到下一个版本!