Skip to content

Commit ad49660

Browse files
committed
Update test dependencies
Remove pinax-theme-bootstrap, replace with pinax-templates. Bump django-test-plus requirement for testing. Bump app version.
1 parent 6188a0a commit ad49660

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,10 @@ and which are not dismissed.
217217

218218
## Change Log
219219

220+
### 3.0.1
221+
222+
* Replace pinax-theme-bootstrap test dependency with pinax-templates
223+
220224
### 3.0.0
221225

222226
* Bump major version after completing Django 2.0 upgrade, removing <=1.10 support

runtests.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"django.contrib.contenttypes",
1414
"django.contrib.sites",
1515
"django.contrib.sessions",
16-
"pinax_theme_bootstrap",
1716
"bootstrapform",
1817
"pinax.announcements",
19-
"pinax.announcements.tests"
18+
"pinax.announcements.tests",
19+
"pinax.templates",
2020
],
2121
MIDDLEWARE = [
2222
"django.contrib.sessions.middleware.SessionMiddleware",
@@ -42,7 +42,6 @@
4242
"OPTIONS": {
4343
"context_processors": [
4444
"django.contrib.auth.context_processors.auth",
45-
"pinax_theme_bootstrap.context_processors.theme",
4645
]
4746
}
4847
},

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

3-
VERSION = "3.0.0"
3+
VERSION = "3.0.1"
44
LONG_DESCRIPTION = """
55
.. image:: http://pinaxproject.com/pinax-design/patches/pinax-announcements.svg
66
:target: https://pypi.python.org/pypi/pinax-announcements/
@@ -91,8 +91,8 @@
9191
"django>=1.11",
9292
],
9393
tests_require=[
94-
"django-test-plus>=1.0.19",
95-
"pinax-theme-bootstrap>=7.7.0",
94+
"django-test-plus>=1.0.22",
95+
"pinax-templates>=1.0.0",
9696
"mock>=2.0.0",
9797
],
9898
test_suite="runtests.runtests",

0 commit comments

Comments
 (0)