From 86639359728802313df1c921913591e5c9817254 Mon Sep 17 00:00:00 2001 From: Patrick Huck Date: Mon, 17 Jun 2024 10:53:09 -0700 Subject: [PATCH] numpy<2 @munrojm Numpy 2 is out. I pinned it to `<1` but we'll have to keep an eye on compatibility in the stack and upgrade eventually... --- emmet-core/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/emmet-core/setup.py b/emmet-core/setup.py index f2af029cd0..809736ffc6 100644 --- a/emmet-core/setup.py +++ b/emmet-core/setup.py @@ -27,6 +27,7 @@ }, include_package_data=True, install_requires=[ + "numpy<2", "pymatgen==2024.4.13", "monty>=2024.2.2", "pydantic>=2.0",