From 3cbfd09a45d6f971137ca0a8fe6f3c71a8bc2f0a Mon Sep 17 00:00:00 2001 From: Alessandro Uffreduzzi Date: Thu, 2 Mar 2023 16:21:24 +0100 Subject: [PATCH] [14.0][IMP] account_loan: remove numpy from explicit requirements account_loan 14.0.1.0.6 --- account_loan/__manifest__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_loan/__manifest__.py b/account_loan/__manifest__.py index 5b72580c9..03bcb7afb 100644 --- a/account_loan/__manifest__.py +++ b/account_loan/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Account Loan management", - "version": "14.0.1.0.5", + "version": "14.0.1.0.6", "author": "Creu Blanca,Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-financial-tools", "license": "AGPL-3", @@ -20,7 +20,7 @@ ], "installable": True, "external_dependencies": { - "python": ["numpy==1.15", "numpy-financial<=1.0.0"], + "python": ["numpy>=1.15", "numpy-financial<=1.0.0"], "deb": ["libatlas-base-dev"], }, }