diff --git a/README.md b/README.md index f63eb14..0e01320 100644 --- a/README.md +++ b/README.md @@ -315,6 +315,10 @@ Both templates ship already configured to work out of the box. ## Change Log +### 7.0.1 + +* Replace pinax-theme-bootstrap test dependency with pinax-templates + ### 7.0.0 * Add Django 2.0 compatibility testing diff --git a/runtests.py b/runtests.py index 5ed72d1..a2e0d44 100644 --- a/runtests.py +++ b/runtests.py @@ -16,7 +16,7 @@ "pinax.images", "pinax.blog", "pinax.blog.tests", - "pinax_theme_bootstrap", + "pinax.templates", ], DATABASES={ "default": { @@ -35,7 +35,6 @@ "debug": True, "context_processors": [ "django.contrib.auth.context_processors.auth", - "pinax_theme_bootstrap.context_processors.theme", ] } }, diff --git a/setup.py b/setup.py index 28cea36..2dfd081 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = "7.0.0" +VERSION = "7.0.1" LONG_DESCRIPTION = """ .. image:: http://pinaxproject.com/pinax-design/patches/pinax-app.svg :target: https://pypi.python.org/pypi/pinax-app/ @@ -97,14 +97,14 @@ install_requires=[ "django>=1.11", "django-appconf>=1.0.1", - "pinax-images>=3.0.0", + "pinax-images>=3.0.1", "pytz>=2016.6.1", "Pillow>=3.0.0", "Markdown>=2.6.5", "Pygments>=2.0.2", ], tests_require=[ - "pinax-theme-bootstrap>=7.4.0", + "pinax-templates>=1.0.0", ], test_suite="runtests.runtests", zip_safe=False diff --git a/tox.ini b/tox.ini index 245cf13..b17b525 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ inline-quotes = double [isort] multi_line_output=3 known_django=django -known_third_party=creole,pinax,pytz,pygments,markdown,appconf +known_third_party=appconf,creole,markdown,pinax,pygments,pytz sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER include_trailing_comma=True skip_glob=**/*/migrations/*