Adam Johnson
Adam Johnson
This is my book, published 2023 and [updated for the second time yesterday](https://adamj.eu/tech/2025/01/28/bygdx-second-update/).
Suggested by @charettes on [a Django forum discussion](https://forum.djangoproject.com/t/revisiting-types-in-django-dep-14/37832/11) regrading adding types to Django: ```py from __future__ import annotations from typing import Protocol from django.db.models import fields from django.db.models.sql import compiler,...
The first commit adds Django 5.2 support - no code changes required, just adding the testing and metadata. The second commit fixes all type errors reported by Mypy, which are...
[Zed](https://zed.dev/) just released EditorConfig support ([issue](https://github.com/zed-industries/zed/issues/8534)).
### Description Suggestion from chat with @graingert and @seporaitis: add a `--randomly-seed-vcs` or similar option that uses the current Git commit SHA as the seed. That way, parallel test runs...
Currently, tox-ini-fmt sorts `env_list` with the `t`-suffixed variants at the end: ```ini [tox] env_list = py{314, 313, 312, 311, 310, 39, 314t, 313t} ``` I’d like them to remain in...
So the intro for this project reads: > According to [Git documentation](https://git-scm.com/docs/git-config) valid colors are limited to white, black, green, magenta, blue, cyan, yellow, red. Due to the limitation on...
As I’ve built [inline-snapshot-django](https://inline-snapshot-django.readthedocs.io/en/latest/), I have thought about unittest support for inline-snapshot. In the Django sphere, unittest remains fairly popular, especially since Django’s testing framework builds upon it. I have...
Django 6.0rc1, django-tasks 0.9.0. I have a basic tasks file: ```py from django.tasks import task @task def echo(message: str) -> str: print(message) ``` …and django-tasks’ `DatabaseBackend` configured. Importing my tasks...