From 34b305e8a6474a699e11bc8a3d2dd770ca9718e7 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Mon, 26 Feb 2024 19:33:50 +0100 Subject: [PATCH] Dependencies: Add explicit `click` dependency Removing explicit `click_completion()` which is no longer needed for modern versions of click. --- pyproject.toml | 1 + src/aiida_common_workflows/cli/__init__.py | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71ddb275..ea01f6c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ dependencies = [ 'aiida-core[atomic_tools]~=2.1', 'ase!=3.20.*', + 'click~=8.0', 'pint~=0.16', 'pymatgen>=2022.1.20' ] diff --git a/src/aiida_common_workflows/cli/__init__.py b/src/aiida_common_workflows/cli/__init__.py index ee34cfa7..3c32a804 100644 --- a/src/aiida_common_workflows/cli/__init__.py +++ b/src/aiida_common_workflows/cli/__init__.py @@ -1,5 +1 @@ """Module for the command line interface.""" -import click_completion - -# Activate the completion of parameter types provided by the click_completion package -click_completion.init()