diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index 8d7af1de97c8aea738c0f7c503d1461ad413db4f..0000000000000000000000000000000000000000 --- a/.isort.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[settings] -line_length=88 -order_by_type=true -lines_between_types=1 diff --git a/conda/meta.yaml b/conda/meta.yaml index bcf7de63ba81cbbef112d80c29a1a54fd6d2de64..b1cb17cd4286f42cb9a3608d7e70dabb7abbec41 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -21,32 +21,34 @@ requirements: - python {{ python }} - setuptools {{ setuptools }} - pip {{ pip }} - - clapper # bob dependencies + - bob - bob.io.base # other libraries - - numpy {{ numpy }} + - clapper {{ clapper }} - dask {{ dask }} - dask-jobqueue {{ dask_jobqueue }} - distributed {{ distributed }} - - scikit-learn {{ scikit_learn }} - - xarray {{ xarray }} - h5py {{ h5py }} + - numpy {{ numpy }} - requests {{ requests }} + - scikit-learn {{ scikit_learn }} + - xarray {{ xarray }} # optional dependencies - dask-ml {{ dask_ml }} run: - python - setuptools - - clapper + - bob - bob.io.base - - {{ pin_compatible('numpy') }} + - {{ pin_compatible('clapper') }} - {{ pin_compatible('dask') }} - {{ pin_compatible('dask-jobqueue') }} - {{ pin_compatible('distributed') }} + - {{ pin_compatible('h5py') }} + - {{ pin_compatible('numpy') }} - {{ pin_compatible('scikit-learn') }} - {{ pin_compatible('xarray') }} - - {{ pin_compatible('h5py') }} - requests run_constrained: - {{ pin_compatible('dask-ml') }} diff --git a/pyproject.toml b/pyproject.toml index 256a9b040fe3e10b81b75e731fa7ca45524d7d90..acc5105f99049c8a0e285d0a3b9a6bd44a10cc09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,17 +26,17 @@ "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ - "setuptools", - "numpy", - "clapper", + "bob", "bob.io.base", - "scikit-learn", + "clapper", "dask", - "distributed", "dask-jobqueue", - "xarray", + "distributed", "h5py", + "numpy", "requests", + "scikit-learn", + "xarray", ] [project.urls]