Version 2.1: * Fixed a regression in FilterView introduced in 2.0. An empty QuerySet was incorrectly used whenever the FilterSet was unbound (i.e. when there were no GET parameters). The correct, pre-2.0 behaviour is now restored. A workaround was to set strict=False on the FilterSet. This is no longer necessary, so you may restore strict behaviour as desired. * Added IsoDateTimeFromToRangeFilter. Allows From-To filtering using ISO-8601 formatted dates.
21 lines
644 B
Makefile
21 lines
644 B
Makefile
# $NetBSD: Makefile,v 1.5 2019/01/22 09:37:49 adam Exp $
|
|
|
|
DISTNAME= django-filter-2.1.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-filter/}
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= https://github.com/carltongibson/django-filter
|
|
COMMENT= Generic dynamic filtering support for Django
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-django>=1.11:../../www/py-djangorestframework
|
|
DEPENDS+= ${PYPKGPREFIX}-djangorestframework-[0-9]*:../../www/py-djangorestframework
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|