From 3a6744dc67ac8e902dfa397a535943458d6fd14e Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Wed, 10 Aug 2022 18:22:25 +0200 Subject: [PATCH] django-fmd==0.3.1 --- conf/requirements.txt | 6 +-- manifest.json | 2 +- poetry.lock | 8 ++-- pyproject.toml | 4 +- tests/test_django_project.py | 3 +- ...oject_web_page_as_sso_user_1.snapshot.html | 48 +++++++++---------- 6 files changed, 36 insertions(+), 35 deletions(-) diff --git a/conf/requirements.txt b/conf/requirements.txt index a3d7dcf..206736d 100644 --- a/conf/requirements.txt +++ b/conf/requirements.txt @@ -34,9 +34,9 @@ django-axes==5.36.0; python_version >= "3.7" and python_full_version < "4.0.0" \ django-debug-toolbar==3.5.0; python_version >= "3.7" and python_full_version < "4.0.0" \ --hash=sha256:97965f2630692de316ea0c1ca5bfa81660d7ba13146dbc6be2059cf55b35d0e5 \ --hash=sha256:89a52128309eb4da12738801ff0c202d2ff8730d1c3225fac6acf630c303e661 -django-fmd==0.3.0; python_version >= "3.7" and python_full_version < "4.0.0" \ - --hash=sha256:3f37abb95baf8c31ee002fdd92a664f9c39b4482e9018006ba07c245557975df \ - --hash=sha256:037ef14461161555d0d842a10038d52a1d8eff012a6ec005bddddff1dbf0ad45 +django-fmd==0.3.1; python_version >= "3.7" and python_full_version < "4.0.0" \ + --hash=sha256:89621bdbed70a09278b4011b759ee29a4e1db5434f0cb482648ff68acae09c9f \ + --hash=sha256:76f62cb4972d2ef52721b792c9eca70ad6e9daf4f64d64938d6089e81ca473cd django-ipware==4.0.2; python_version >= "3.7" and python_full_version < "3.0.0" or python_version >= "3.7" and python_full_version < "4.0.0" and python_full_version >= "3.6.0" \ --hash=sha256:602a58325a4808bd19197fef2676a0b2da2df40d0ecf21be414b2ff48c72ad05 \ --hash=sha256:878dbb06a87e25550798e9ef3204ed70a200dd8b15e47dcef848cf08244f04c9 diff --git a/manifest.json b/manifest.json index 9f1bfcd..9f452c2 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Web based FritzBox management using Python/Django." }, - "version": "0.3.0~ynh1", + "version": "0.3.1~ynh1", "url": "https://gitlab.com/jedie/django-find-my-device", "upstream": { "license": "GPL-3.0", diff --git a/poetry.lock b/poetry.lock index 5c98dd4..4542431 100644 --- a/poetry.lock +++ b/poetry.lock @@ -295,7 +295,7 @@ sqlparse = ">=0.2.0" [[package]] name = "django-fmd" -version = "0.3.0" +version = "0.3.1" description = "Server for 'Find My Device' android app, implemented in Django/Python" category = "main" optional = false @@ -887,7 +887,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = ">=3.7,<4.0.0" -content-hash = "f5779544801c5d184cbcfcd0265200b6d5d92cf4b0f78179a9fe42135ce4650b" +content-hash = "629dbab9c11611ead745199bba20e20c5c867ed1fa53bdc1c80237ffe3a960ef" [metadata.files] asgiref = [ @@ -1042,8 +1042,8 @@ django-debug-toolbar = [ {file = "django_debug_toolbar-3.5.0-py3-none-any.whl", hash = "sha256:89a52128309eb4da12738801ff0c202d2ff8730d1c3225fac6acf630c303e661"}, ] django-fmd = [ - {file = "django-fmd-0.3.0.tar.gz", hash = "sha256:3f37abb95baf8c31ee002fdd92a664f9c39b4482e9018006ba07c245557975df"}, - {file = "django_fmd-0.3.0-py3-none-any.whl", hash = "sha256:037ef14461161555d0d842a10038d52a1d8eff012a6ec005bddddff1dbf0ad45"}, + {file = "django-fmd-0.3.1.tar.gz", hash = "sha256:89621bdbed70a09278b4011b759ee29a4e1db5434f0cb482648ff68acae09c9f"}, + {file = "django_fmd-0.3.1-py3-none-any.whl", hash = "sha256:76f62cb4972d2ef52721b792c9eca70ad6e9daf4f64d64938d6089e81ca473cd"}, ] django-ipware = [ {file = "django-ipware-4.0.2.tar.gz", hash = "sha256:602a58325a4808bd19197fef2676a0b2da2df40d0ecf21be414b2ff48c72ad05"}, diff --git a/pyproject.toml b/pyproject.toml index 441efed..b6643b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-fmd_ynh" -version = "0.3.0~ynh1" +version = "0.3.1~ynh1" description = "Test django-fmd_ynh via local_test.py" authors = ["JensDiemer "] license = "GPL" @@ -8,7 +8,7 @@ license = "GPL" [tool.poetry.dependencies] # Keep Python 3.7 until Yunohost contains a newer Python Version ;) python = ">=3.7,<4.0.0" -django-fmd = ">=0.3.0" # https://gitlab.com/jedie/django-find-my-device +django-fmd = ">=0.3.1" # https://gitlab.com/jedie/django-find-my-device # Note: "ynh" extras will install gunicorn, psycopg2, django-redis and django-axes django_yunohost_integration = {version = ">=v0.2.0", extras = ["ynh"]} diff --git a/tests/test_django_project.py b/tests/test_django_project.py index 9e4bba9..b8d4a2a 100644 --- a/tests/test_django_project.py +++ b/tests/test_django_project.py @@ -94,7 +94,8 @@ class DjangoYnhTestCase(HtmlAssertionMixin, TestCase): parts=( 'FMD', '

Find My Device

', - '', + '', + '', ), ) assert_html_response_snapshot(response2, query_selector=None, validate=False) diff --git a/tests/test_django_project_web_page_as_sso_user_1.snapshot.html b/tests/test_django_project_web_page_as_sso_user_1.snapshot.html index dd88a99..c6d5429 100644 --- a/tests/test_django_project_web_page_as_sso_user_1.snapshot.html +++ b/tests/test_django_project_web_page_as_sso_user_1.snapshot.html @@ -8,18 +8,18 @@ - - - - - - - -