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

Can create auto-generated test data.

Results 31 django-autofixture issues
Sort by recently updated
recently updated
newest added

fix django 3 compitability by using original six package

I try to install the package on Gitlab with image python:3.8.12. Context: ``` $ python -V Python 3.8.12 $ pip install virtualenv Collecting virtualenv Downloading virtualenv-20.15.0-py2.py3-none-any.whl (10.1 MB) Collecting distlib=0.3.1...

Django removed the vendor provided `six` library. https://docs.djangoproject.com/en/3.1/releases/3.0/#removed-private-python-2-compatibility-apis added it as a dependency so `autofixture` will continue to work. fixes #112

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...

Is there any plan to add support to Django 2.0?

Hi, I'm very new to Django and to this plugin too, so please be patient. I wanted to report this error when using the package with Django 2. I have...

Support for direct assignment in manytomany fields was removed in Django 2.0 (see: https://docs.djangoproject.com/en/2.0/releases/2.0/#features-removed-in-2-0). This commit adds an extra param to `process_field` to indicate that the field being processed is...