Skip to content

Commit

Permalink
Merge pull request #12 from prismaticd/django_22
Browse files Browse the repository at this point in the history
Allow django 2.2, drop unsupported Django versions
  • Loading branch information
hirokiky authored Feb 27, 2019
2 parents 7f67cc0 + b01ea8a commit 05b2a45
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Tested under...

* 2.7
* 3.6
* 3.7

* Django

* 1.8
* 1.10
* 1.11
* 2.0
* 2.1
* 2.2b

Installation
============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
description="Basic auth utilities for Django.",
long_description=README + '\n\n' + CHANGES,
packages=['basicauth'],
install_requires=['Django>=1.8,!=1.9,<2.2'],
install_requires=['Django>=1.11'],
include_package_data=True,
test_suite="tests",
zip_safe=False,
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[tox]
envlist =
py27-django{18,110,111}
py36-django{18,110,111,20,21}
py27-django{111}
py36-django{111,21,22}
py37-django{111,21,22}
flake8

[testenv]
basepython =
py27: python2.7
py36: python3.6
py37: python3.7
deps =
django18: Django>=1.8,<1.9
django110: Django>=1.10,<1.11
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2b1,<2.3
commands =
python -m unittest discover

Expand Down

0 comments on commit 05b2a45

Please sign in to comment.