2013-11-03 19:45:15 +08:00
|
|
|
from django.db.models.sql import aggregates
|
|
|
|
from django.db.models.sql.aggregates import * # NOQA
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2013-11-03 19:45:15 +08:00
|
|
|
__all__ = ['Collect', 'Extent', 'Extent3D', 'MakeLine', 'Union'] + aggregates.__all__
|
2013-11-03 16:52:40 +08:00
|
|
|
|
2013-11-03 16:53:28 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
warnings.warn(
|
|
|
|
"django.contrib.gis.db.models.sql.aggregates is deprecated. Use "
|
|
|
|
"django.contrib.gis.db.models.aggregates instead.",
|
2015-06-23 01:54:35 +08:00
|
|
|
RemovedInDjango110Warning, stacklevel=2)
|