From 97ee37fa7985c9517c00f3f641c35eb7c8f41d8e Mon Sep 17 00:00:00 2001 From: Alessio Buccino Date: Sat, 18 Jan 2025 16:13:15 +0100 Subject: [PATCH] Update neo and numpy 2.0 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0b2f06049f..1e51abf131 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] description = "Python toolkit for analysis, visualization, and comparison of spike sorting output" readme = "README.md" -requires-python = ">=3.9,<3.13" # Only numpy 2.1 supported on python 3.13 for windows. We need to wait for fix on neo +requires-python = ">=3.9,<3.14" # Only numpy 2.1 supported on python 3.13 for windows. We need to wait for fix on neo classifiers = [ "Programming Language :: Python :: 3 :: Only", "License :: OSI Approved :: MIT License", @@ -20,11 +20,11 @@ classifiers = [ dependencies = [ - "numpy>=1.20, <2.0", # 1.20 np.ptp, 1.26 might be necessary for avoiding pickling errors when numpy >2.0 + "numpy>=1.20", "threadpoolctl>=3.0.0", "tqdm", "zarr>=2.16,<2.18", - "neo>=0.13.0", + "neo>=0.14.0", "probeinterface>=0.2.23", "packaging", ]