Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,30 @@ env:
- TOX_ENV=py34-django1.8-drf3.6
- TOX_ENV=py34-django1.10-drf3.5
- TOX_ENV=py34-django1.10-drf3.6
- TOX_ENV=py34-django1.11-drf3.9
- TOX_ENV=py34-django2.0-drf3.9
- TOX_ENV=py34-django2.1-drf3.9
- TOX_ENV=py34-django2.2-drf3.9
- TOX_ENV=py35-django1.8-drf3.5
- TOX_ENV=py35-django1.8-drf3.6
- TOX_ENV=py35-django1.10-drf3.5
- TOX_ENV=py35-django1.10-drf3.6
- TOX_ENV=py35-django1.11-drf3.9
- TOX_ENV=py35-django2.0-drf3.9
- TOX_ENV=py35-django2.1-drf3.9
- TOX_ENV=py35-django2.2-drf3.9
- TOX_ENV=py36-django1.8-drf3.5
- TOX_ENV=py36-django1.8-drf3.6
- TOX_ENV=py36-django1.10-drf3.5
- TOX_ENV=py36-django1.10-drf3.6

- TOX_ENV=py36-django1.11-drf3.9
- TOX_ENV=py36-django2.0-drf3.9
- TOX_ENV=py36-django2.1-drf3.9
- TOX_ENV=py36-django2.2-drf3.9
- TOX_ENV=py37-django1.11-drf3.9
- TOX_ENV=py37-django2.0-drf3.9
- TOX_ENV=py37-django2.1-drf3.9
- TOX_ENV=py37-django2.2-drf3.9
matrix:
fast_finish: true

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ DRY Rest Permissions allows developers to easily describe what gives someone per
## Requirements

- Python (2.7+)
- Django (1.8, 1.10, 2.0)
- Django (1.8, 1.10, 2.0, 2.2)
- Django REST Framework (3.5, 3.6, 3.7)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ DRY Rest Permissions allows developers to easily describe what gives someone per
##Requirements

- Python (2.7, 3.4+)
- Django (1.7, 1.8, 1.9, 2.0)
- Django (1.7, 1.8, 1.9, 2.0 ,2.2)
- Django REST Framework (3.0, 3.1, 3.7)

##Installation
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Minimum Django and REST framework version
Django>=1.6,<2.0; python_version<'3.0'
Django>=1.6,<=2.2; python_version<'3.0'
Django>=2.0; python_version>='3.0'
djangorestframework>=2.4.3

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def get_package_data(package):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands = ./runtests.py --fast
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django1.11: Django>=1.11,<2.0
django1.11: Django>=1.11,<=2.2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it should be <3.0

django2: Django>=2.0,<3.0
drf3.5: djangorestframework>=3.5,<3.6
drf3.6: djangorestframework>=3.6,<3.7
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update the drf versions as well

Expand Down