From f29cb40ca47e23c1c649e8abfa8ac0396c35c4cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 05:57:28 +0000 Subject: [PATCH 1/4] Bump bandit from 1.7.4 to 1.7.5 Bumps [bandit](https://github.com/PyCQA/bandit) from 1.7.4 to 1.7.5. - [Release notes](https://github.com/PyCQA/bandit/releases) - [Commits](https://github.com/PyCQA/bandit/compare/1.7.4...1.7.5) --- updated-dependencies: - dependency-name: bandit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- linter-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linter-requirements.txt b/linter-requirements.txt index 649a6a1d..fc6e8bc5 100644 --- a/linter-requirements.txt +++ b/linter-requirements.txt @@ -1,4 +1,4 @@ -bandit==1.7.4 +bandit==1.7.5 black==23.1.0 flake8==6.0.0 isort==5.12.0 From d307c317799e9e9348fcf98974a4fea95e31b387 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Mon, 6 Feb 2023 14:28:48 +0100 Subject: [PATCH 2/4] Fix override_settings issue --- django_select2/apps.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django_select2/apps.py b/django_select2/apps.py index 921269b6..98905972 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -7,3 +7,6 @@ class Select2AppConfig(AppConfig): name = "django_select2" verbose_name = "Select2" + + def ready(self): + from . import conf From 1fb55d6cd24454bcf5f35fe7815d10dc1c92b1d4 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Sat, 11 Feb 2023 17:25:24 +0100 Subject: [PATCH 3/4] Update django_select2/apps.py Co-authored-by: Johannes Maron --- django_select2/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_select2/apps.py b/django_select2/apps.py index 98905972..052473a5 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -9,4 +9,4 @@ class Select2AppConfig(AppConfig): verbose_name = "Select2" def ready(self): - from . import conf + from . import conf. # noqa From f9a439d7f40b8a17e87f5c820e10825caca81ae7 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Sat, 11 Feb 2023 18:43:55 +0100 Subject: [PATCH 4/4] Fix extraneous dot --- django_select2/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_select2/apps.py b/django_select2/apps.py index 052473a5..77b053ac 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -9,4 +9,4 @@ class Select2AppConfig(AppConfig): verbose_name = "Select2" def ready(self): - from . import conf. # noqa + from . import conf # noqa