diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..435bec94 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "pip" + # Files stored in repository root + directory: "/" + schedule: + interval: "daily" + time: "08:00" + groups: + python-packages: + patterns: + - "*" diff --git a/pyproject.toml b/pyproject.toml index 39687c3f..55b011a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,14 +43,14 @@ classifiers = [ ] dependencies = [ 'numpy<2.0.0', - 'torch>=2.0.0', - 'torchvision', - 'bioimageio.core>=0.7.0', - 'tifffile', - 'psutil', + 'torch>=2.0,<=2.5', + 'torchvision<=0.20', + 'bioimageio.core==0.7', + 'tifffile<=2024.8.30', + 'psutil<=6.1', 'pydantic>=2.5,<2.9', - 'pytorch_lightning>=2.2.0', - 'pyyaml', + 'pytorch_lightning>=2.2,<=2.4', + 'pyyaml<=6.0.2,!=6.0.0', 'typer==0.12.3', 'scikit-image<=0.23.2', 'zarr<3.0.0',