From dedbeb721cf20bb293588c39a1253c3aaf7d0bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sun, 12 Nov 2023 15:21:10 +0100 Subject: [PATCH] Don't depend on copier for python<3.8 Copier is required for oca-create-branch only, and copier 9 does not support python<3.8. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9d24cd29..ceccb1d3 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ "pyproject_dependencies ; python_version>='3.7'", "setuptools-odoo", # for oca-gen-external-dependencies "whool", # for oca-gen-external-dependencies - "copier>=9", + "copier>=9 ; python_version>='3.8'", # for oca-create-branch ], python_requires=">=3.6", classifiers=[