使用最新的graphene和graphene-django版本时导入(无法从“ graphql”导入名称“ ResolveInfo”)错误

布赖特

自更新依赖关系以来,我的Django应用程序出现了一些问题。这是我已安装的应用程序:

INSTALLED_APPS = [
    'graphene_django',
    'rest_framework',
    'corsheaders',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'dojo_manager.dojo',
]

和我的requirements.txt:

aniso8601==8.0.0   
asgiref==3.2.3   
Django==3.0.2   
django-cors-headers==3.2.0   
django-filter==2.2.0   
django-graphql-jwt==0.3.0   
djangorestframework==3.11.0   
djangorestframework-jwt==1.11.0   
graphene==2.1.8   
graphene-django==2.8.0   
graphene-django-extras==0.4.8   
graphql-core==3.0.1   
graphql-relay==3.0.0   
pip-upgrade-outdated==1.5   
pipupgrade==1.5.2   
promise==2.3   
PyJWT==1.7.1   
python-dateutil==2.8.1   
pytz==2019.3   
Rx==3.0.1   
singledispatch==3.4.0.3   
six==1.13.0   
sqlparse==0.3.0   

我正进入(状态

ImportError: cannot import name 'ResolveInfo' from 'graphql' (E:\Ben\GitHub-Repos\dojo-manager\env\lib\site-packages\graphql\__init__.py)

我知道https://github.com/graphql-python/graphene-django/issues/737https://github.com/graphql-python/graphene/issues/546,似乎都无法解决我的情况。

任何帮助,不胜感激。

布赖特

好的,我可以通过降级graphql-core==3.0.1graphql-core<3(和所有依赖关系)来修复它

我一定错过了表演时的错误 pip install -r requirements.txt

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章