tkhyn / django-gm2m

MIT License
35 stars 23 forks source link

deprecated dependeny:six #49

Closed k34n4y138 closed 4 years ago

k34n4y138 commented 4 years ago

the package depends on six, assumed to be found in django.utils as the import statement is: from django.utils import six six is no longer to be found in django.utils the import statement: from django.utils import six must be changed to : 'import six' and the package six must be added to the requirements as a third party package the change of the statement must be applied to the following file:

edit: I've forked and edited the repo as listed above, you can download and replace the old one by: pip install -e git+https://github.com/k34n4y138/django-gm2m.git@develop#egg=django-gm2m --upgrade

ChillarAnand commented 4 years ago

@tkhyn Any plans for supporting Django 3.0?

tkhyn commented 4 years ago

Fixed in 55d205ec thanks to @devbis