Sid Mitra
Sid Mitra
@LincolnPuzey 4th option could be to add a parameter? `include_auto_now=True` to save_dirty_fields() ? Your comment on the other PR also makes sense. >For the second part of your change -...
Same error as #701 . I tried upgrading to master and i can still replicate it.
>probably it would make more sense to implement Granian workers for Gunicorn.. This also makes sense, but i'm not aware of the tradeoffs. I created the ticket thinking of the...
I'd be open to volunteer a few hours a week to do any legwork required to unblock stuff. Being a full "roadie" involves some level of trust i assume, hence...
@domdinicola I've not heard back on this here, nor from the author. So not sure what the best way forward is I'm maintaining a fork here for work: https://github.com/Airbase/django-fernet-fields-django-v4 If...
@kracekumar I found some discussion around annotate on this [PR](https://github.com/typeddjango/django-stubs/pull/398).
Yes i can confirm that this seems to be breaking with 3.12 ```bash File "/Users/myuser/Projects/foobar/app/urls.py", line 3, in from spyne.protocol.soap import Soap11 File "/Users/myuser/Library/Caches/pypoetry/virtualenvs/foobar-csyzUOJz-py3.12/lib/python3.12/site-packages/spyne/__init__.py", line 39, in from spyne.evmgr import...
Another recent example ```python from pydantic.v1.dataclasses import BaseModel, Field class Foo(BaseModel): my_list: list[str] = Field(default_factory=list) ``` The above started failing after a un-related refactor on pydantic v2 from `my_list: list[str]...
https://docs.djangoproject.com/en/5.2/releases/5.2/ Django 5.2 has now released.
After using pytest-socket for many years, just came around to needing this use case this week :-) I wanted to allow access to localhost:5432(postgres) but disallow localhost:6379(redis). One reason being...