Skip to content
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

fix: Remove usage of deprecated is_iterable util #1642

Merged

Commits on Mar 8, 2024

  1. fix: Remove usage of deprecated is_iterable util

    Django announced [1] that the `django.utils.itercompat` module is
    deprecated since Django 5.1.
    
    Instead, the same behavior can be achieved with an instance comparison
    against `Iterable` [2].
    
    [1] https://docs.djangoproject.com/en/dev/releases/5.1/#features-deprecated-in-5-1
    [2] https://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
    adamantike committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    4138d5a View commit details
    Browse the repository at this point in the history