diff --git a/conda/meta.yaml b/conda/meta.yaml index 9470059a30e558c512b64db9c830fa26b10bc5f0..8afeca8c53c14d44afdbfeb883c0c5401c5b64b5 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -22,25 +22,27 @@ requirements: - python {{ python }} - setuptools {{ setuptools }} - pip {{ pip }} + - bob - bob.io.base - - clapper - - numpy {{ numpy }} - - scipy {{ scipy }} + - clapper {{ clapper }} - h5py {{ h5py }} - matplotlib {{ matplotlib }} - - tabulate {{ tabulate }} - numba {{ numba }} + - numpy {{ numpy }} + - scipy {{ scipy }} + - tabulate {{ tabulate }} run: - python - setuptools + - bob - bob.io.base - - clapper - - {{ pin_compatible('numpy') }} - - {{ pin_compatible('scipy') }} + - {{ pin_compatible('clapper') }} - {{ pin_compatible('h5py') }} - {{ pin_compatible('matplotlib') }} - - {{ pin_compatible('tabulate') }} - {{ pin_compatible('numba') }} + - {{ pin_compatible('numpy') }} + - {{ pin_compatible('scipy') }} + - {{ pin_compatible('tabulate') }} test: imports: diff --git a/pyproject.toml b/pyproject.toml index 8a57cc89cbf94eef5cc9b97951d242c89bead89d..80430e131ee482f3b2632ebe21ab628cbc2600fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,15 +25,15 @@ "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ - "setuptools", - "numpy", + "bob", "bob.io.base", "clapper", - "scipy", "h5py", "matplotlib", - "tabulate", "numba", + "numpy", + "scipy", + "tabulate", ] [project.urls]