v2.8.0 not compatible with Django 3.0.2 regarding six
See original GitHub issueI upgraded Django and graphene django but when I make a request I get this error
Could not import 'fieldrecords.schema.schema' for Graphene setting 'SCHEMA'. ImportError: cannot import name 'six'.
Issue Analytics
- State:
- Created 4 years ago
- Comments:11 (7 by maintainers)
Top Results From Across the Web
Django 3.0 release notes
These release notes cover the new features, as well as some backwards incompatible changes you'll want to be aware of when upgrading from ......
Read more >ImportError: cannot import name 'six' from 'django.utils'
Django stopped supporting Python 2. Since django.utils.six provided "Utilities for writing code that runs on Python 2 and 3", it was not longer ......
Read more >Release Notes - Django REST framework
3.14.0 ; Django 2.2 is no longer supported. [#8662] ; Django 4.1 compatibility. [#8591] ; Add --api-version CLI option to generateschema management command....
Read more >How to Leapfrog a Massive Django/Python Upgrade ...
Migrating from Django 1.7 to 3.1 is no small task. Besides having to deal with the upgrade of Django itself, you shouldn't forget...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
upgrade graphql_jwt version to 0.3.0 verion, I had same problem and solved by run this command try
pip install "django-graphql-jwt>=0.3.0"
@jkimbo :
If
six
is required, shouldn’t this be enforced insetup.py
?