Martey Dodoo
Martey Dodoo
I've updated this pull request so it works properly when multiple people or email addresses are in `settings.MANAGERS`.
I've updated the formatting and changed to the link to use HTTPS.
The hex UID issue was fixed by https://github.com/pinax/django-user-accounts/commit/5176583ba7c44bd1d151ce9b11345381411f228b, which added a `__str__` method to `account.models.Account`. Hex UIDs shouldn't appear in django-user-accounts 1.0 or newer, which symposion started using in December...
`MIDDLEWARE_CLASSES` is a tuple, so the suggested workaround gave me an error. Removing the APM middleware did work with the following code: ``` MIDDLEWARE_CLASSES = tuple( middleware for middleware in...
I think I had the same issue! Looking at your repository's Dependabot logs, I can see the line (which also appears in my repository): > Dependabot is using Python version...
> I don't see how these two versions — the version of Python running the Dependabot process and the version of Python used by the code base that it is...
@HitLuca Do you mean you are seeing this issue with `1.14.6` (not `1.4.6`) and that it is not happening with `1.14.5`? If so, I can confirm that I am seeing...
I think I know why this is occurring. _[TL;DR summary: update google-auth to >=2.26.0]_ `1.14.6` includes #1427, which imports additional dependencies from [google-auth](https://pypi.org/project/google-auth/): ```` from google import auth from google.auth.credentials...
I agree with you that wagtailmenus is generally compatible with minor versions and that the testing section of the README does not need to include them. However, my changes are...
I've added a new commit that only changes the GTE signs to LTE signs, since #509 updated the Python version compatibility.