From df3265dd5a86b898cf382a89586537a76e327c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20POIRET?= Date: Thu, 17 Feb 2022 10:04:49 +0100 Subject: [PATCH] Quick deps update --- pyproject.toml | 6 +++--- roiloc/__init__.py | 2 +- tests/test_roiloc.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 76584d7..87cc769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ROILoc" -version = "0.2.5" +version = "0.2.6" description = "A simple package to center and crop T1w & T2w MRIs around a given region of interest by its name." license = "MIT" readme = "README.rst" @@ -17,9 +17,9 @@ repository = "https://github.com/clementpoiret/ROILoc" [tool.poetry.dependencies] python = "^3.7" -antspyx = "^0.2.7" +antspyx = ">=0.2.7" pandas = "^1.3.0" -rich = "^10.5.0" +rich = "^11.0.0" importlib-resources = "^5.2.0" [tool.poetry.scripts] diff --git a/roiloc/__init__.py b/roiloc/__init__.py index fe404ae..01ef120 100644 --- a/roiloc/__init__.py +++ b/roiloc/__init__.py @@ -1 +1 @@ -__version__ = "0.2.5" +__version__ = "0.2.6" diff --git a/tests/test_roiloc.py b/tests/test_roiloc.py index 1cb4615..d75a01e 100644 --- a/tests/test_roiloc.py +++ b/tests/test_roiloc.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.2.5' + assert __version__ == '0.2.6'