From 254c102b3179ec970792a691a01e9f2a50f8fb06 Mon Sep 17 00:00:00 2001 From: Neil Millard Date: Wed, 22 Jul 2020 12:48:59 +0100 Subject: [PATCH 1/4] curry dropped from django 3 --- pinax/blog/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinax/blog/admin.py b/pinax/blog/admin.py index d140487..38eed33 100644 --- a/pinax/blog/admin.py +++ b/pinax/blog/admin.py @@ -1,6 +1,6 @@ from django.contrib import admin from django.utils import timezone -from django.utils.functional import curry +from functools import partial as curry from django.utils.translation import ugettext_lazy as _ from pinax.images.admin import ImageInline From 0a7650932f5b254033f3e7663de234366448e10f Mon Sep 17 00:00:00 2001 From: Katherine Michel Date: Mon, 27 Jul 2020 13:39:10 -0500 Subject: [PATCH 2/4] Sort imports --- pinax/blog/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pinax/blog/admin.py b/pinax/blog/admin.py index 38eed33..085c199 100644 --- a/pinax/blog/admin.py +++ b/pinax/blog/admin.py @@ -1,6 +1,7 @@ +from functools import partial as curry + from django.contrib import admin from django.utils import timezone -from functools import partial as curry from django.utils.translation import ugettext_lazy as _ from pinax.images.admin import ImageInline From 074db33016d85860b8c13a29ac4139e7f2825f9c Mon Sep 17 00:00:00 2001 From: KatherineMichel Date: Mon, 27 Jul 2020 13:46:31 -0500 Subject: [PATCH 3/4] Update version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4d94b47..d7f6d1f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "8.0.0" +VERSION = "8.0.1" LONG_DESCRIPTION = """ .. image:: http://pinaxproject.com/pinax-design/patches/pinax-blog.svg :target: https://pypi.python.org/pypi/pinax-blog/ From 5194a809c9122e7884b5a22721b3be019111defd Mon Sep 17 00:00:00 2001 From: KatherineMichel Date: Mon, 27 Jul 2020 13:48:35 -0500 Subject: [PATCH 4/4] Update Change Log --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6a59778..8d5fef2 100644 --- a/README.md +++ b/README.md @@ -399,6 +399,10 @@ Both templates ship already configured to work out of the box. ## Change Log +### 8.0.1 + +* Change `from django.utils.functional import curry` to `from functools import partial as curry` + ### 8.0.0 * Drop Django 1.11, 2.0, and 2.1, and Python 2,7, 3.4, and 3.5 support