From eb0d878ec4d46fa5ade013fafa6ce3d3e4c95702 Mon Sep 17 00:00:00 2001 From: Charles Lirsac Date: Mon, 15 Apr 2024 16:21:05 +0100 Subject: [PATCH 1/2] Update supported versions of Python & Django --- .circleci/config.yml | 9 ++------- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 144da03..15f88c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,13 +34,8 @@ references: version-matrix: &version-matrix matrix: parameters: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] - django-version: ["2.2", "3.0", "3.1", "3.2", "4.0"] - exclude: - - python-version: "3.6" - django-version: "4.0" - - python-version: "3.7" - django-version: "4.0" + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + django-version: ["2.2", "3.0", "3.1", "3.2", "4.0", "5.0"] executors: python: diff --git a/pyproject.toml b/pyproject.toml index 6463465..21c9ca6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.6" -django = ">=2.2,<5" -django-debug-toolbar = ">=2,<4" +python = "^3.8" +django = ">=2.2,<6" +django-debug-toolbar = ">=2,<5" [tool.poetry.dev-dependencies] From 71e364efd54e99d5edb6d0800ac2e5fc7f180274 Mon Sep 17 00:00:00 2001 From: Charles Lirsac Date: Mon, 15 Apr 2024 16:22:01 +0100 Subject: [PATCH 2/2] Declare 2.3.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 21c9ca6..0f36cfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-debug-toolbar-user-switcher" -version = "2.2.0" +version = "2.3.0" description = "Panel for the Django Debug toolbar to quickly switch between users." authors = ["Thread Engineering "] license = "BSD-3-Clause"