From 7c5a54540d68c6f099f3f8c330ce51c777bf123e Mon Sep 17 00:00:00 2001 From: Davis Raymond Muro Date: Fri, 10 Feb 2023 11:49:54 +0300 Subject: [PATCH 1/2] Bump `install_requires` to support Django 4 --- setup.cfg | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 3de3bb5..3b2d02d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ tests_require = mock tox install_requires = - Django>=3.2.13,<4 + Django>=3.2.13,<5 djangorestframework pyjwt[crypto] requests diff --git a/tox.ini b/tox.ini index 0f3ab53..b71e6e0 100644 --- a/tox.ini +++ b/tox.ini @@ -23,6 +23,6 @@ basepython = py39: python3.9 commands = django32: pip install Django>=3.2.13,<4 - django40: pip install Django>=4 + django40: pip install Django>=4,<5 pipenv sync --dev python manage.py test {toxinidir}/tests From 068dacc2b2e25bc682ff54f8d61947513acdba00 Mon Sep 17 00:00:00 2001 From: Davis Raymond Muro Date: Fri, 10 Feb 2023 11:53:54 +0300 Subject: [PATCH 2/2] Bump version to `1.0.2` --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3b2d02d..33778ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ona-oidc -version = 1.0.1 +version = 1.0.2 description = Ona OpenID Connect Client long_description = file: README.rst long_description_content_type = text/x-rst