From ce632e9c95356496e3d91f518475483d6d316a1a Mon Sep 17 00:00:00 2001 From: Philip Loche Date: Tue, 5 Mar 2024 07:34:50 +0100 Subject: [PATCH 1/2] Pin rascaline version, limit metatensor version --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cf6081df3..f07a5d323 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,10 +12,10 @@ dependencies = [ "ase", "torch", "hydra-core", - "rascaline-torch @ git+https://github.com/luthaf/rascaline#subdirectory=python/rascaline-torch", + "rascaline-torch @ git+https://github.com/luthaf/rascaline@5ac2ee9#subdirectory=python/rascaline-torch", "metatensor-core", - "metatensor-operations", - "metatensor-torch", + "metatensor-operations <0.2", + "metatensor-torch <0.3", "metatensor-learn", ] From 80bf1c0a02286d753377e8e1793a80bbeba9cb0c Mon Sep 17 00:00:00 2001 From: SanggyuChong Date: Thu, 7 Mar 2024 15:48:07 +0100 Subject: [PATCH 2/2] limit metatensor-* versions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f07a5d323..0b68abcdb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,9 @@ dependencies = [ "hydra-core", "rascaline-torch @ git+https://github.com/luthaf/rascaline@5ac2ee9#subdirectory=python/rascaline-torch", "metatensor-core", - "metatensor-operations <0.2", + "metatensor-operations <0.2.1", "metatensor-torch <0.3", - "metatensor-learn", + "metatensor-learn <0.2.1", ] keywords = ["machine learning", "molecular modeling"]