umutbozkurt / django-rest-framework-mongoengine

Mongoengine support for Django Rest Framework
MIT License
616 stars 167 forks source link

Compatible with Django 3.0 #273

Closed LKI closed 4 years ago

LKI commented 4 years ago

Django 3.0 remove vendored library django.utils.six, ref: django 3.0 changelog

But we use it in rest_framework_mongoengine/serializers.py

So there will be an error:

ModuleNotFoundError: No module named 'django.utils.six'
uoxiu commented 4 years ago

@LKI Thanks for reporting, in the next few days we will fix this

uoxiu commented 4 years ago

@LKI fixed in the new release, 3.4.1

https://pypi.org/project/django-rest-framework-mongoengine/3.4.1/

LKI commented 4 years ago

Thanks!