django-autofixture icon indicating copy to clipboard operation
django-autofixture copied to clipboard

django.utils.six -> six in latest version of django

Open sootak opened this issue 4 years ago • 2 comments

It makes error "ModuleNotFoundError: No module named 'django.utils.six'" due to the update of django. django.utils.six module was removed and it should be replaced with just 'six'. This issue was arouse in two files: base.py and values.py

sootak avatar Mar 21 '20 02:03 sootak

I experienced the same issue.

  File "C:\GIT\backend\lib\site-packages\autofixture\__init__.py", line 4, in <module>
    from autofixture.base import AutoFixture
  File "C:\GIT\backend\lib\site-packages\autofixture\base.py", line 5, in <module>
    from django.utils.six import with_metaclass
ModuleNotFoundError: No module named 'django.utils.six'

Johnz86 avatar May 04 '20 13:05 Johnz86

I have fixed this issue by installing django 2.1.7 , but yes it still an issue with the library

mohammedilamine avatar May 04 '20 21:05 mohammedilamine