diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-05 21:52:56 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-05 23:48:20 +0200 |
commit | 7cacd8c8dab02dff48a096b6c8f6c3cd4e1161bb (patch) | |
tree | 40b4964d800177cdaf31e6c71efe512312c4b6db /gnu/packages/django.scm | |
parent | 3239a2d5a5eab6362cda865153325ca0c0a71546 (diff) | |
download | guix-7cacd8c8dab02dff48a096b6c8f6c3cd4e1161bb.tar.gz |
gnu: python-django-picklefield: Test with Django 2.2.
* gnu/packages/django.scm (python-django-picklefield)[native-inputs]: Change from PYTHON-DJANGO to PYTHON-DJANGO-2.2.
Diffstat (limited to 'gnu/packages/django.scm')
-rw-r--r-- | gnu/packages/django.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 2b3d07c759..0299e60433 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -663,7 +663,10 @@ conn_max_age argument to easily enable Django’s connection pool.") (lambda _ (invoke "python" "-m" "django" "test" "-v2" "--settings=tests.settings")))))) - (native-inputs `(("python-django" ,python-django))) + (native-inputs + ;; XXX: Picklefield has not been updated in 10+ years and fails tests + ;; with Django 3.2. + `(("python-django@2.2" ,python-django-2.2))) (synopsis "Pickled object field for Django") (description "Pickled object field for Django") (license license:expat))) |