From 376e4f3cac7ca616b59da814740c4c0f7a8b0864 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Wed, 9 Nov 2022 18:45:38 +0100 Subject: [PATCH] apply 4dbd146 from https://github.com/jedie/cookiecutter_templates/ --- manifest.json | 8 ++++---- pyproject.toml | 9 ++++++--- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/manifest.json b/manifest.json index 4790b31..7db95b5 100644 --- a/manifest.json +++ b/manifest.json @@ -3,16 +3,16 @@ "id": "django_example_ynh", "packaging_format": 1, "description": { - "en": "App to demonstrate the integration of a Django project under YunoHost via https://github.com/YunoHost-Apps/django_yunohost_integration" - }, - "version": "0.5.0rc1~ynh1", + "en": "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost." + }, + "version": "0.1.0rc0~ynh1", "url": "https://github.com/YunoHost-Apps/django_example_ynh", "upstream": { "license": "GPL-3.0", "website": "https://github.com/YunoHost-Apps/django_example_ynh", "admindoc": "https://github.com/YunoHost-Apps/django_example_ynh", - "userdoc": "https://github.com/YunoHost-Apps/django_example_ynh", "code": "https://github.com/YunoHost-Apps/django_example_ynh" + "userdoc": "https://github.com/jedie/django-example", }, "license": "GPL-3.0", "maintainer": { diff --git a/pyproject.toml b/pyproject.toml index f808d60..53b63fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django_example_ynh" -version = "0.5.0rc1+ynh1" +version = "0.1.0rc0~ynh1" description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost." authors = ["Jens Diemer "] license = "GPL-3.0" @@ -12,7 +12,7 @@ homepage = "https://github.com/YunoHost-Apps/django_example_ynh" [tool.poetry.dependencies] python = ">=3.9,<4.0.0" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye) -django-example = ">=0.1.0rc0" # https://github.com/jedie/django-example +django_example = ">=0.1.0rc0" # https://github.com/jedie/django-example # extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes # see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml @@ -63,7 +63,7 @@ log_level = "INFO" atomic=true profile='black' skip_glob=["*/htmlcov/*","*/migrations/*","*/local_test/*"] -known_first_party=['django-example'] +known_first_party=['django_example'] line_length=100 lines_after_imports=2 @@ -120,6 +120,9 @@ initial_revision = "da47a1e" initial_date = 2022-11-06T17:25:53+01:00 cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/" cookiecutter_directory = "yunohost_django_package" +applied_migrations = [ + "4dbd146", # 2022-11-06T17:59:58+01:00 +] [manageprojects.cookiecutter_context.cookiecutter] project_name = "Django Example"