From 5991e80393ce0ccd42015efd7a478dd0016aa4bf Mon Sep 17 00:00:00 2001 From: Julian Geiger Date: Wed, 12 Aug 2026 16:39:29 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20`aiida-core`:=20drop=20the?= =?UTF-8?q?=20`<3.0`=20upper=20bound?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `~=2.6` specifier caps the requirement below 3.0, so `aiida-shell` cannot be installed next to a current `aiida-core` checkout of `main`, which now reports a 3.0 development version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 77e54a1..504bb15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ 'Topic :: Scientific/Engineering' ] dependencies = [ - 'aiida-core~=2.6,>=2.6.1', + 'aiida-core>=2.6.1', 'dill' ] dynamic = ['description', 'version']