├── .ambient-package-update ├── metadata.py └── templates │ └── snippets │ ├── content.tpl │ ├── installation.tpl │ └── tagline.tpl ├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── django_removals ├── __init__.py ├── apps.py └── checks │ ├── __init__.py │ └── settings.py ├── docs ├── Makefile ├── conf.py ├── features │ └── changelog.rst ├── index.rst ├── make.bat └── system_check_warning.png ├── manage.py ├── pyproject.toml ├── scripts ├── unix │ ├── install_requirements.sh │ └── publish_to_pypi.sh └── windows │ ├── install_requirements.ps1 │ └── publish_to_pypi.ps1 ├── settings.py ├── testapp ├── __init__.py └── urls.py ├── tests ├── __init__.py └── checks │ ├── __init__.py │ └── test_settings.py └── uv.lock /.ambient-package-update/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.ambient-package-update/metadata.py -------------------------------------------------------------------------------- /.ambient-package-update/templates/snippets/content.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.ambient-package-update/templates/snippets/content.tpl -------------------------------------------------------------------------------- /.ambient-package-update/templates/snippets/installation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.ambient-package-update/templates/snippets/installation.tpl -------------------------------------------------------------------------------- /.ambient-package-update/templates/snippets/tagline.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.ambient-package-update/templates/snippets/tagline.tpl -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/SECURITY.md -------------------------------------------------------------------------------- /django_removals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/django_removals/__init__.py -------------------------------------------------------------------------------- /django_removals/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/django_removals/apps.py -------------------------------------------------------------------------------- /django_removals/checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_removals/checks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/django_removals/checks/settings.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/features/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../CHANGES.md 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/system_check_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/docs/system_check_warning.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/manage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/unix/install_requirements.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pip install -U uv 3 | uv sync --frozen --extra dev 4 | -------------------------------------------------------------------------------- /scripts/unix/publish_to_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/scripts/unix/publish_to_pypi.sh -------------------------------------------------------------------------------- /scripts/windows/install_requirements.ps1: -------------------------------------------------------------------------------- 1 | pip install -U uv 2 | uv sync --frozen --extra dev 3 | -------------------------------------------------------------------------------- /scripts/windows/publish_to_pypi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/scripts/windows/publish_to_pypi.ps1 -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/settings.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/testapp/urls.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checks/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/tests/checks/test_settings.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambient-innovation/django-removals/HEAD/uv.lock --------------------------------------------------------------------------------