Skip to content

Commit

Permalink
Update changelog and test matrix for latest django/python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kluchrj committed Jan 10, 2022
1 parent fb1dfe3 commit f767641
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

v1.0.5 (Released 1/10/2022)
---------------------------

- Added core support for retrieving Django Rest Framework class instances on DRF views. Note that you will still need to write a custom processor to parse these views. Thanks @jeffgabhart!
- Added Python 3.10 and Django 4.0 to the test matrix. Removed unsupported Django 3.0 and 3.1 versions.


v1.0.4 (Released 5/20/2021)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion permissions_auditor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"Permissions auditing for Django."

__version__ = '1.0.4'
__version__ = '1.0.5'


default_app_config = 'permissions_auditor.apps.PermissionsAuditorConfig'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking',
],
Expand Down
13 changes: 6 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
envlist =
{py36,py37}-django22
{py36,py37,py38}-django30
{py36,py37,py38,py39}-django31
{py36,py37,py38,py39}-django32
{py36,py37,py38,py39}-django22
{py36,py37,py38,py39,py310}-django32
{py38,py39,py310}-django40
lint

[gh-actions]
Expand All @@ -12,13 +11,13 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[testenv]
deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
coverage
setenv =
PYTHONPATH = {toxinidir}
Expand All @@ -31,7 +30,7 @@ commands =


[testenv:lint]
basepython = python3.8
basepython = python3.10
commands = flake8 .
deps =
flake8

0 comments on commit f767641

Please sign in to comment.