This project is open source and community driven. As such we encourage code contributions of all kinds. Some areas you can contribute in:
- Improve the stubs
- Sync stubs with the latest version of Django
- Improve plugin code and extend its capabilities
- Write tests
- Update dependencies
If you want to start working on this project, you will need to get familiar with python typings. The Mypy documentation offers an excellent resource for this, as well as the python official documentation:
Additionally, the following resources might be useful:
- How to write custom mypy plugins
- Typechecking Django and DRF guide
- Testing mypy stubs, plugins, and types guide
- Awesome Python Typing list
As a first step you will need to fork this repository and clone your fork locally. In order to be able to continously sync your fork with the origin repository's master branch, you will need to set up an upstream master. To do so follow this official github guide.
After your repository is setup you will then need to create and activate a git ignored virtual env, e.g.:
python3 -m venv .venv
source .venv/bin/activate
Then install the dev requirements:
pip install -r ./requirements.txt
Finally, install the pre-commit hooks:
pre-commit install
We use mypy
, pytest
, flake8
, and black
for quality control. All tools except pytest are executed using pre-commit when you make a commit.
To ensure there are not formatting or typing issues in the entire repository you can run:
pre-commit run --all-files
NOTE: This command will not only lint but also modify files - so make sure to commit whatever changes you've made before hand. You can also run pre-commit per file or for a specific path, simply replace "--all-files" with a target (see this guide for more info).
To execute the unit tests, simply run:
pytest
If you get some unexpected results or want to be sure that tests run is not affected by previous one, remove mypy
cache:
rm -r .mypy_cache
We also test the stubs against Django's own test suite. This is done in CI but you can also do this locally. To execute the script run:
python ./scripts/typecheck_tests.py --django_version 3.2
The stubs are based on auto-generated code created by Mypy's stubgen tool (see: the stubgen docs). To make life easier we have a helper script that auto generates these stubs. To use it you can run:
python ./scripts/stubgen-django.py --django_version 3.2
You can also pass an optional commit hash as a second kwarg to checkout a specific commit, e.g.
python ./scripts/stubgen-django.py --django_version 3.2 --commit_sha <commit_sha>
The output for this is a gitignored folder called "stubgen" in the repo's root.
The workflow for contributions is fairly simple:
- fork and setup the repository as in the previous step.
- create a local branch.
- make whatever changes you want to contribute.
- ensure your contribution does not introduce linting issues or breaks the tests by linting and testing the code.
- make a pull request with an adequate description.
As Django uses a lot of the more dynamic features of Python (i.e. metaobjects), statically typing it requires heavy use of generics. Unfortunately, the syntax for generics is also valid python syntax. For instance, the statement class SomeClass(SuperType[int])
implicitly translates to class SomeClass(SuperType.__class_getitem__(int))
. If SuperType
doesn't define the __class_getitem__
method, this causes a runtime error, even if the code typechecks.
When adding a new generic class, or changing an existing class to use generics, run a quick test to see if it causes a runtime error. If it does, please add the new generic class to the _need_generic
list in the django_stubs_ext monkeypatch function