From 0e0085ccf8869c130d5c34b49618111a1ee15406 Mon Sep 17 00:00:00 2001 From: Maxx Tessmer Date: Mon, 10 Feb 2025 23:10:52 -0800 Subject: [PATCH 1/3] loosen igraph dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 63ba357..7d77e8c 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ dependencies = ['numpy>=1.23.0', 'tqdm>=4.45.0', 'pytest>=6.2.2', 'memoization>=0.3.1', - 'igraph>=0.11.2', + 'igraph>=0.10.3', 'rtoml>=0.9.0'] classifiers=['License :: OSI Approved :: GNU General Public License v3 (GPLv3)', From b4ffd344739167a59ca2d6ba7408fddd9573c072 Mon Sep 17 00:00:00 2001 From: Maxx Tessmer Date: Mon, 10 Feb 2025 23:15:36 -0800 Subject: [PATCH 2/3] Bump version --- src/chilife/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chilife/__init__.py b/src/chilife/__init__.py index d0105b4..1c8d887 100644 --- a/src/chilife/__init__.py +++ b/src/chilife/__init__.py @@ -26,4 +26,4 @@ # SpinLabel = SpinLabel.SpinLabel # dSpinLabel = dSpinLabel.dSpinLabel -__version__ = '1.1.0' +__version__ = '1.1.1' From 4a05f5bc92ca20417927a7ac1ebc9214f0014853 Mon Sep 17 00:00:00 2001 From: Maxx Tessmer Date: Mon, 10 Feb 2025 23:27:49 -0800 Subject: [PATCH 3/3] Bump down numba version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7d77e8c..102e606 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires-python = ">= 3.8,<3.13" dependencies = ['numpy>=1.23.0', 'scipy>=1.6.3', 'matplotlib>=3.3.4', - 'numba>=0.57.0', + 'numba>=0.55.0', 'mdanalysis>=2.0.0', 'tqdm>=4.45.0', 'pytest>=6.2.2',