From 25a309d8a7ee2f8c3cb7b51ecd592215f85b4ae8 Mon Sep 17 00:00:00 2001 From: k-dominik Date: Mon, 12 Aug 2024 16:25:58 +0200 Subject: [PATCH] mnt: update dev deps, unpin pytest --- dev/environment-dev.yaml | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dev/environment-dev.yaml b/dev/environment-dev.yaml index b2fb844..ec69c7c 100644 --- a/dev/environment-dev.yaml +++ b/dev/environment-dev.yaml @@ -1,7 +1,7 @@ name: ndstructs-dev channels: - - defaults - conda-forge + - nodefaults dependencies: - black - bumpversion @@ -9,6 +9,7 @@ dependencies: - scikit-image - h5py - pre_commit - - pytest <5.4 - - python >=3.7 + - pytest + - python >=3.8 + - imageio - fs diff --git a/setup.py b/setup.py index baf0a80..906feb6 100644 --- a/setup.py +++ b/setup.py @@ -10,5 +10,5 @@ packages=["ndstructs", "ndstructs.utils", "ndstructs.datasource", "ndstructs.datasink", "ndstructs.caching"], python_requires=">=3.8", install_requires=["numpy", "scikit-image", "h5py", "fs", "typing_extensions", "imageio"], - extras_require={"dev": ["pytest<5.4"]}, + extras_require={"dev": ["pytest"]}, )