diff --git a/conda/meta.yaml b/conda/meta.yaml index 45a60d0854a69dc10e21f6b01caa519dbdeda6c4..540153d7b9b86e69db1ca21e1c9cb55026274bc8 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -21,30 +21,32 @@ requirements: - python {{ python }} - setuptools {{ setuptools }} - pip {{ pip }} + - bob + - bob.io.base + - bob.bio.base + - clapper {{ clapper }} + - docopt {{ docopt }} + - matplotlib {{ matplotlib }} - numpy {{ numpy }} - - scipy {{ scipy }} - pillow {{ pillow }} - schema {{ schema }} - - docopt {{ docopt }} - scikit-image {{ scikit_image }} - - matplotlib {{ matplotlib }} - - clapper - - bob.io.base - - bob.bio.base + - scipy {{ scipy }} run: - python - setuptools - - clapper + - bob - bob.io.base - bob.bio.base + - {{ pin_compatible('clapper') }} + - {{ pin_compatible('docopt') }} + - {{ pin_compatible('matplotlib') }} - {{ pin_compatible('numpy') }} - - {{ pin_compatible('scipy') }} - {{ pin_compatible('pillow') }} - {{ pin_compatible('schema') }} - - {{ pin_compatible('docopt') }} - {{ pin_compatible('scikit-image') }} - - {{ pin_compatible('matplotlib') }} + - {{ pin_compatible('scipy') }} test: imports: diff --git a/pyproject.toml b/pyproject.toml index 8b0e96577720e0b536b498921486c5c2b3d52479..10b1cfb47b54ee94c2a7a814db49187252d9a431 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,17 +27,17 @@ "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ - "setuptools", + "bob", + "bob.io.base", + "bob.bio.base", + "clapper", + "docopt", + "matplotlib", "numpy", - "scipy", "pillow", "schema", - "docopt", "scikit-image", - "matplotlib", - "clapper", - "bob.io.base", - "bob.bio.base", + "scipy", ] [project.urls]