From b441d5a135e01da4d367fc8ab963de684c4b72ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-No=C3=ABl=20Grad?= Date: Sat, 17 Aug 2024 11:46:05 +0200 Subject: [PATCH] Bump Python dependencies (#84) Impose a lower limit on Python package version based on Ubuntu 22.04. Prevent the installation of NumPy 2.0, which is not officially supported by ESPResSo yet. --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index bbe9eb0..e31bfa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -numpy>=1.23 +numpy>=1.23,<2.0 pandas>=1.5.3 pint>=0.20.01 pint-pandas>=0.3 biopandas==0.5.1.dev0 -scipy -matplotlib -tqdm +scipy>=1.8.0 +matplotlib>=3.5.1 +tqdm>=4.57.0