Skip to content

Commit

Permalink
Dependencies: Update requirement aiida-core~=2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastiaan Huber authored and sphuber committed Oct 4, 2023
1 parent c08c3f2 commit 0e3258b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
7 changes: 4 additions & 3 deletions aiida_common_workflows/cli/root.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# -*- coding: utf-8 -*-
"""Command line interface ``acwf``."""
from aiida.cmdline.groups import VerdiCommandGroup
from aiida.cmdline.params import options, types
import click


@click.group('acwf', context_settings={'help_option_names': ['-h', '--help']})
@options.PROFILE(type=types.ProfileParamType(load_profile=True))
def cmd_root(profile): # pylint: disable=unused-argument
@click.group('acwf', cls=VerdiCommandGroup, context_settings={'help_option_names': ['-h', '--help']})
@options.PROFILE(type=types.ProfileParamType(load_profile=True), expose_value=False)
def cmd_root():
"""CLI for the ``aiida-common-workflows`` plugin."""
31 changes: 15 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,26 @@ keywords = ['aiida', 'workflows']
requires-python = '>=3.8,<3.10'
dependencies = [
'abipy==0.9.6',
'aiida-ase',
'aiida-abinit~=0.4.0',
'aiida-bigdft>=0.2.6',
'aiida-castep>=1.2.0a5',
'aiida-core[atomic_tools]~=1.6',
'aiida-cp2k~=1.6',
'aiida-fleur>=1.3.0',
'aiida-gaussian',
'aiida-nwchem>=2.1.0',
'aiida-orca',
'aiida-pseudo==0.6.5',
'aiida-quantumespresso~=3.4,>=3.4.1',
'aiida-siesta>=1.2.0',
'aiida-bigdft~=0.3.0',
'aiida-castep~=2.0',
'aiida-core[atomic_tools]~=2.1',
'aiida-cp2k~=2.0',
'aiida-fleur~=2.0',
'aiida-gaussian~=2.0',
'aiida-nwchem~=3.0',
'aiida-orca~=0.6.0',
'aiida-pseudo~=1.0',
'aiida-quantumespresso~=4.0',
'aiida-siesta~=2.0',
'aiida-vasp~=2.2',
'aiida-wien2k~=0.1.1',
'aiida-ase',
'pymatgen>=2022.1.20',
'numpy<1.24.0',
'sqlalchemy<1.4',
'ase!=3.20.*',
'pint~=0.16',
'masci-tools~=0.9'
'numpy<1.24.0',
'pint~=0.16',
'pymatgen>=2022.1.20',
]

[project.urls]
Expand Down

0 comments on commit 0e3258b

Please sign in to comment.