From 063f2b8c279c8faac191eb0b332aa50a57703f37 Mon Sep 17 00:00:00 2001 From: Ryan Kingsbury Date: Sun, 11 Aug 2024 17:15:56 -0400 Subject: [PATCH] set minimum dependency versions --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5010947e..8c0fea13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,13 +21,13 @@ license = {file = "LICENSE"} requires-python = ">=3.9" dependencies = [ "pint>=0.19", - "numpy<2", + "numpy>1.26,<2", "scipy>1.10", "pymatgen==2024.5.1", "iapws>=1.5.3", "monty>=2024.7.12", "maggma>=0.67.0", - "phreeqpython>=1.5", + "phreeqpython>=1.5.2", ] [project.urls] @@ -38,7 +38,7 @@ Package = "https://pypi.org/project/pyEQL" [project.optional-dependencies] testing = [ - "setuptools>=60", + "setuptools>=68", "pre-commit>=2", "pytest>=7", "pytest-cov",