From 1f9c0d55eb2b41fcbb6aff80eebba15b152fc10b Mon Sep 17 00:00:00 2001 From: leonunix Date: Tue, 2 May 2023 08:42:06 +0900 Subject: [PATCH] Update pyproject.toml fix numpy version for home assistant os --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 659bbf03..47c50e2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = [ "numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'", "numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'", "numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'", - "numpy==1.21.2; python_version=='3.10' and platform_system!='Darwin'", + "numpy==1.23.2; python_version=='3.10' and platform_system!='Darwin'", "numpy==1.21.4; python_version=='3.10' and platform_system=='Darwin'", "numpy==1.22.0; python_version>='3.11'" ]