Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync conda runtime dependencies with pyproject.toml #92

Merged
merged 10 commits into from
Feb 1, 2024
26 changes: 17 additions & 9 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,23 @@ outputs:
- python >=3.8

# dependencies matched to setup.cfg
- app-model >=0.1.2,<0.3.0a
- app-model >=0.2.2,<0.3.0a
- appdirs >=1.4.4
- cachey >=0.2.1
- certifi >=2020.6.20
- dask >=2.15.0,!=2.28.0
# Do not depend on base "dask" package since it pulls
# in the distributed dependency
# conda-forge doesn't have the dask-array subpackage
# so depend on cytoolz and numpy manually
- dask-core>=2.15.0,!=2.28.0
- cytoolz >=0.11.0
- imageio >=2.20,!=2.22.1
- jsonschema >=3.2.0
- lazy_loader >=0.2
- magicgui >=0.3.6
- napari-console >=0.0.6
- magicgui >=0.7.0
- napari-console >=0.0.9
- napari-plugin-engine >=0.1.9
- napari-plugin-manager >=0.1.0a2, <0.2.0a0
- napari-svg >=0.1.8
- npe2 >=0.7.2
- numpy >=1.21,<2.0a0
Expand All @@ -54,16 +60,15 @@ outputs:
- pillow !=7.1.0,!=7.1.1
- pint >=0.17
- psutil >=5.0
- psygnal>=0.3.4
- pydantic >=1.9.0,<2.0a0
- psygnal>=0.5.0
- pydantic >=1.9.0
- pygments >=2.6.0
- pyopengl >=3.1.0
- pyyaml >=5.1
- qtpy >=1.10.0
- scikit-image >=0.19.1
- scipy >=1.5.4
- sphinx >=4.3.0,<5.0a0
- superqt >=0.4.1
- superqt >=0.5.0
- tifffile >=2020.2.16
- toolz >=0.10.0
- tqdm >=4.56.0
Expand All @@ -80,7 +85,9 @@ outputs:
- pyside2 >=5.14.2,!=5.15.0
- pyqt >=5.12.3,!=5.15.0
- pyside6 <6.3.2

# Nice for performance, but optional. Inclusion under discussion.
# - py-triangle
# - numba >=0.57.1 # https://github.com/napari/napari/pull/6467#issuecomment-1819038165
test:
requires:
- pip
Expand All @@ -92,6 +99,7 @@ outputs:
# - xarray
# - pandas
# - pytest-timeout
# - numba >=0.57.1 # https://github.com/napari/napari/pull/6467#issuecomment-1819038165
jaimergp marked this conversation as resolved.
Show resolved Hide resolved
imports:
- napari
commands:
Expand Down
Loading