Skip to content
Merged
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
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Dylan Giesler
Emanuele Palazzetti
Federico Dolce
Frederico Vieira
Hasan Ramezani
Hiroki Kiyohara
Jens Timmerman
Jerome Leclanche
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-->

## [unreleased]
* Remove support for Django 3.0
* Add support for Django 3.2

### Added
* #712, #636, #808. Calls to `django.contrib.auth.authenticate()` now pass a `request`
Expand Down
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ Django OAuth Toolkit
:target: https://codecov.io/gh/jazzband/django-oauth-toolkit
:alt: Coverage

.. image:: https://img.shields.io/pypi/pyversions/django-oauth-toolkit.svg
:target: https://pypi.org/project/django-oauth-toolkit/
:alt: Supported Python versions

.. image:: https://img.shields.io/pypi/djversions/django-oauth-toolkit.svg
:target: https://pypi.org/project/django-oauth-toolkit/
:alt: Supported Django versions

If you are facing one or more of the following:
* Your Django app exposes a web API you want to protect with OAuth2 authentication,
* You need to implement an OAuth2 authorization server to provide tokens management for your infrastructure,
Expand All @@ -42,7 +50,7 @@ Requirements
------------

* Python 3.6+
* Django 2.1+
* Django 2.2+
* oauthlib 3.1+

Installation
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
flake8,
docs,
py{36,37,38,39}-dj{31,30,22},
py{36,37,38,39}-dj{32,31,22},
py{38,39}-djmain,

[gh-actions]
Expand Down Expand Up @@ -33,8 +33,8 @@ setenv =
PYTHONWARNINGS = all
deps =
dj22: Django>=2.2,<3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
djmain: https://github.com/django/django/archive/main.tar.gz
djangorestframework
oauthlib>=3.1.0
Expand Down