-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named 'six' #443
Comments
Do you have a source for this? |
sure: check changes in setup.py. regardless of wagtails changes its good practice to include packages that are used directly in required dependencies. i.e. wagtail-modeltranslation/wagtail_modeltranslation/templatetags/wagtail_modeltranslation.py Line 10 in 2cd8868
six should be included in your pyproject.toml under [tool.poetry.dependencies] |
Thanks for finding the commit.
Could six be removed from here? I didn't look any deeper into what
six.iteritems does, but it sounds like it could be replaced.
|
ImportError raised when trying to load 'wagtail_modeltranslation.templatetags.wagtail_modeltranslation': No module named 'six'
starting with version 6.4 wagtail has removed l18n as a required package. which in turn installs the missing six package.
The text was updated successfully, but these errors were encountered: