summaryrefslogtreecommitdiff
path: root/django/contrib
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-01 10:15:59 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commitfd6a299cd06fac615ccb9006df0dd98cd8461cc5 (patch)
treec2a19b2eafd05e786be4d861e389c347a7bc3d9a /django/contrib
parent7140d4adf724347aceda1cec7d194f0403fba027 (diff)
Refs #14030 -- Removed backwards compatiblity for old-style aggregates.
Per deprecation timeline.
Diffstat (limited to 'django/contrib')
-rw-r--r--django/contrib/gis/db/models/sql/aggregates.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/django/contrib/gis/db/models/sql/aggregates.py b/django/contrib/gis/db/models/sql/aggregates.py
deleted file mode 100644
index e3fb049cf5..0000000000
--- a/django/contrib/gis/db/models/sql/aggregates.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from django.db.models.sql import aggregates
-from django.db.models.sql.aggregates import * # NOQA
-
-__all__ = ['Collect', 'Extent', 'Extent3D', 'MakeLine', 'Union'] + aggregates.__all__
-
-
-warnings.warn(
- "django.contrib.gis.db.models.sql.aggregates is deprecated. Use "
- "django.contrib.gis.db.models.aggregates instead.",
- RemovedInDjango110Warning, stacklevel=2)