From 4065d88253ea5c401e9c224ace9eebc2073f7beb Mon Sep 17 00:00:00 2001 From: Pieter Stokkink Date: Wed, 5 Aug 2026 11:53:32 +0200 Subject: [PATCH] bump packages --- README.md | 2 ++ setup.py | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e397ff9..63fbfe2 100644 --- a/README.md +++ b/README.md @@ -190,6 +190,8 @@ We use GitHub pull requests. If your PR should produce a new release of authoriz Changelog --------- +* v2.1.1 + * Bump packages. * v2.1.0 * Add account_id from the user to the request. * v2.0.4 diff --git a/setup.py b/setup.py index 7034a1f..343ea5b 100644 --- a/setup.py +++ b/setup.py @@ -5,25 +5,25 @@ with open("README.md", encoding="utf-8") as f: long_description = f.read() -version = "2.1.0" +version = "2.1.1" packages = [ "authorization_django", "authorization_django.extensions", ] requires = [ "Django>=4.2", - "requests>=2.33.1", - "jwcrypto>=1.5.7", + "requests>=2.34.2", + "jwcrypto>=1.5.8", ] tests_require = [ - "pytest>=9.0.2", + "pytest>=9.1.1", "pytest-cov>=7.1.0", "pytest-django>=4.12.0", "requests_mock", ] extended_require = [ - "djangorestframework>=3.17.1", - "drf-spectacular>=0.29.0", + "djangorestframework>=3.17.2", + "drf-spectacular>=0.30.0", ] setup(