From fed6c8265f058699ed8cea28c970ec2388b32988 Mon Sep 17 00:00:00 2001 From: "R. Miles McCain" Date: Sun, 16 Feb 2020 01:02:32 -0500 Subject: [PATCH] Remove unnecessary/deprecated apps from README The `django.contrib.webdesign` app has been [deprecated](https://docs.djangoproject.com/en/1.8/ref/contrib/webdesign/) since Django 1.8, and including it in the README here could have two negative consequences: * Given its placement, potential users might think using/installing these Django apps is necessary to use the library, which is not the case * It might make it seem like the library hasn't been meaningfully updated since Django 1.8, which is also not the case --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 3a67942..e265e6c 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,6 @@ Add ```django_inlinecss``` to your ```settings.py```: ```python INSTALLED_APPS = ( 'django.contrib.auth', - 'django.contrib.webdesign', - 'django.contrib.contenttypes', '...', '...', '...',