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..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" @@ -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]