Skip to content

Commit

Permalink
Update test dependencies
Browse files Browse the repository at this point in the history
Remove pinax-theme-bootstrap, replace with pinax-templates.
Bump django-test-plus requirement for testing.
Bump app version.
  • Loading branch information
grahamu committed Jan 17, 2018
1 parent 6188a0a commit ad49660
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,10 @@ and which are not dismissed.

## Change Log

### 3.0.1

* Replace pinax-theme-bootstrap test dependency with pinax-templates

### 3.0.0

* Bump major version after completing Django 2.0 upgrade, removing <=1.10 support
Expand Down
5 changes: 2 additions & 3 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"django.contrib.contenttypes",
"django.contrib.sites",
"django.contrib.sessions",
"pinax_theme_bootstrap",
"bootstrapform",
"pinax.announcements",
"pinax.announcements.tests"
"pinax.announcements.tests",
"pinax.templates",
],
MIDDLEWARE = [
"django.contrib.sessions.middleware.SessionMiddleware",
Expand All @@ -42,7 +42,6 @@
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth",
"pinax_theme_bootstrap.context_processors.theme",
]
}
},
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "3.0.0"
VERSION = "3.0.1"
LONG_DESCRIPTION = """
.. image:: http://pinaxproject.com/pinax-design/patches/pinax-announcements.svg
:target: https://pypi.python.org/pypi/pinax-announcements/
Expand Down Expand Up @@ -91,8 +91,8 @@
"django>=1.11",
],
tests_require=[
"django-test-plus>=1.0.19",
"pinax-theme-bootstrap>=7.7.0",
"django-test-plus>=1.0.22",
"pinax-templates>=1.0.0",
"mock>=2.0.0",
],
test_suite="runtests.runtests",
Expand Down

0 comments on commit ad49660

Please sign in to comment.