Skip to content

Commit bad009a

Browse files
authored
New (#789)
* update setup.cfg * update tox * update readme * update changelog * added myself as contributor * updated travis
1 parent 2f325f9 commit bad009a

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://travis-ci.org/jazzband/django-oauth-toolkit
2-
dist: xenial
2+
dist: bionic
33

44
language: python
55

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Contributors
88
============
99

1010
Alessandro De Angelis
11+
Asif Saif Uddin
1112
Ash Christopher
1213
Aristóbulo Meneses
1314
Bart Merenda

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* **Backwards-incompatible** squashed migrations:
55
If you are currently on a release < 1.2.0, you will need to first install 1.2.x then `manage.py migrate` before
66
upgrading to >= 1.3.0.
7+
* Bump django minimum to 2.1
8+
* Dropped Python 3.4
79

810
### 1.2.0 [2018-06-03]
911

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Please report any security issues to the JazzBand security team at <security@jaz
4242
Requirements
4343
------------
4444

45-
* Python 3.4+
46-
* Django 2.0+
45+
* Python 3.5+
46+
* Django 2.1+
4747

4848
Installation
4949
------------
@@ -69,7 +69,7 @@ Notice that `oauth2_provider` namespace is mandatory.
6969
7070
urlpatterns = [
7171
...
72-
url(r'^o/', include('oauth2_provider.urls', namespace='oauth2_provider')),
72+
path('o/', include('oauth2_provider.urls', namespace='oauth2_provider')),
7373
]
7474
7575
Changelog

setup.cfg

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,25 @@ classifiers =
1111
Development Status :: 5 - Production/Stable
1212
Environment :: Web Environment
1313
Framework :: Django
14-
Framework :: Django :: 2.0
1514
Framework :: Django :: 2.1
15+
Framework :: Django :: 2.2
16+
Framework :: Django :: 3.0
1617
Intended Audience :: Developers
1718
License :: OSI Approved :: BSD License
1819
Operating System :: OS Independent
1920
Programming Language :: Python :: 3
20-
Programming Language :: Python :: 3.4
2121
Programming Language :: Python :: 3.5
2222
Programming Language :: Python :: 3.6
23+
Programming Language :: Python :: 3.7
24+
Programming Language :: Python :: 3.8
2325
Topic :: Internet :: WWW/HTTP
2426

2527
[options]
2628
packages = find:
2729
include_package_data = True
2830
zip_safe = False
2931
install_requires =
30-
django >= 2.0
32+
django >= 2.1
3133
requests >= 2.13.0
3234
oauthlib >= 3.0.1
3335

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ setenv =
2323
deps =
2424
django21: Django>=2.1,<2.2
2525
django22: Django>=2.2,<3
26-
django30: Django>=3.0a1,<3.1
26+
django30: Django>=3.0,<3.1
2727
djangomaster: https://github.com/django/django/archive/master.tar.gz
2828
djangorestframework
2929
oauthlib>=3.0.1

0 commit comments

Comments
 (0)