Skip to content

Commit

Permalink
Merge pull request #133 from neilmillard/130_curry
Browse files Browse the repository at this point in the history
curry dropped from django 3
  • Loading branch information
KatherineMichel committed Jul 27, 2020
2 parents 2f073b0 + 5194a80 commit b6d8755
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion 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 django.utils.functional import curry
from django.utils.translation import ugettext_lazy as _

from pinax.images.admin import ImageInline
Expand Down
2 changes: 1 addition & 1 deletion 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/
Expand Down

0 comments on commit b6d8755

Please sign in to comment.