blag

Results 283 comments of blag

Everybody, support for Django 4.0 is already merged from a different PR. It is even tested in the tox configuration in the `develop` branch and tests pass. We no longer...

Yes, with the current distribution, it should be `django_bootstrap5`, and this is noted in both the README and the documentation. @dyve This issue can be closed.

Not sure why tests are failing. They may need to be kicked again.

Not sure why tests are failing. They may need to be kicked.

Is this getting merged anytime soon?

Can you open a pull request that adds a test for this? It's fine if the GitHub Action tests fail, just having a failing test will help.

Django 4.1 support has already ended, but we still test against Django 4.2 and 5.0, and tests are passing. Closing, since I think we fixed this in #148 and elsewhere.

I pushed a commit with the test code you provided: ```python def test_filter(self): self.assertEqual(Book.objects.filter(tags__contains='sex').count(), 1) self.assertEqual(Book.objects.filter(tags__contains='boring').count(), 0) book = Book.objects.first() self.assertQuerySetEqual( Book.objects.filter(pk=book.pk), Book.objects.filter(pk=book.pk, published_in=book.published_in), ) ``` but it's still failing:...