From 8ab89ec5d7cae06dffcf68048bfa41fae48bb790 Mon Sep 17 00:00:00 2001 From: Stef Smeets Date: Mon, 17 Jun 2024 17:39:24 +0200 Subject: [PATCH] Set upper limit to numpy 2.0 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3d3479b8..7a866963 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,16 +38,16 @@ classifiers = [ "Topic :: Software Development :: Libraries", ] dependencies = [ - "comtypes >= 1.1.7", + "comtypes >= 1.1.7; sys_platform == 'windows'", "h5py >= 2.10.0", "ipython >= 7.11.1", "lmfit >= 1.0.0", "matplotlib >= 3.1.2", "mrcfile >= 1.1.2", - "numpy >= 1.17.3", + "numpy >= 1.17.3, <2", "pandas >= 1.0.0", "pillow >= 7.0.0", - "pywinauto >= 0.6.8", + "pywinauto >= 0.6.8; sys_platform == 'windows'", "pyyaml >= 5.3", "scikit-image >= 0.17.1", "scipy >= 1.3.2",