From 5e9dd2f8ea64410ecceaf05945702c174b632f8d Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Sun, 9 Jun 2024 22:30:09 +0200 Subject: [PATCH] fix: DataValidationError of pipenv * https://github.com/pypa/pipenv/issues/6173 --- {{cookiecutter.project_shortname}}/Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_shortname}}/Pipfile b/{{cookiecutter.project_shortname}}/Pipfile index d39697e..46c852f 100644 --- a/{{cookiecutter.project_shortname}}/Pipfile +++ b/{{cookiecutter.project_shortname}}/Pipfile @@ -9,7 +9,7 @@ check-manifest = ">=0.25" [packages] invenio-app-rdm = {extras = ["{{ cookiecutter.search }}"{% if cookiecutter.file_storage == 'S3' %}, "s3"{% endif %}], version = "~=12.0.0rc2"} {%- if cookiecutter.site_code == 'yes'%} -{{cookiecutter.project_shortname}} = {editable="True", path="./site"} +{{cookiecutter.project_shortname}} = {editable = true, path="./site"} {% endif %} uwsgi = ">=2.0" uwsgitop = ">=0.11"