Skip to content

Commit

Permalink
Drop Django 1.8 from Travis, update the CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Sep 13, 2019
1 parent aec2a1f commit 98cd472
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
10 changes: 2 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@ python:
- "3.6"
- "2.7"
env:
- REQ="Django>=2.1,<2.2"
- REQ="Django>=2.0,<2.1"
- REQ="Django>=2.2,<3.0"
- REQ="Django>=1.11,<2.0"
- REQ="Django>=1.8,<1.9"
matrix:
exclude:
- python: "3.6"
env: REQ="Django>=1.8,<1.9"
- python: "2.7"
env: REQ="Django>=2.1,<2.2"
- python: "2.7"
env: REQ="Django>=2.0,<2.1"
env: REQ="Django>=2.2,<3.0"
install:
- pip install -U pip setuptools wheel
- pip install $REQ
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Change log
`Next version`_
~~~~~~~~~~~~~~~

- Added a helper for adding specification field group fieldsets.
- Fixed a bug because the code wouldn't handle the case where several
specification fields were gone at once.
- Dropped compatibility guarantees with old versions of Django.


`0.3`_ (2018-09-30)
~~~~~~~~~~~~~~~~~~~

Expand Down
6 changes: 1 addition & 5 deletions tests/testapp/test_specifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

from django.contrib.auth.models import User
from django.test import Client, TestCase

try:
from django.urls import reverse
except ImportError: # pragma: no cover
from django.core.urlresolvers import reverse
from django.urls import reverse

from specifications.models import Specification, SpecificationField
from specifications.utils import specification_values_dict
Expand Down

0 comments on commit 98cd472

Please sign in to comment.