From e96bcb332005635a982eb2cdf57ef656c0bf3a11 Mon Sep 17 00:00:00 2001 From: Tom Slater Date: Sun, 1 Jun 2025 19:29:34 +0100 Subject: [PATCH 1/3] Update test_particle_clustering.py --- particlespy/tests/test_particle_clustering.py | 1 - 1 file changed, 1 deletion(-) diff --git a/particlespy/tests/test_particle_clustering.py b/particlespy/tests/test_particle_clustering.py index 7a72700..daca2e4 100644 --- a/particlespy/tests/test_particle_clustering.py +++ b/particlespy/tests/test_particle_clustering.py @@ -1,6 +1,5 @@ import random from pathlib import Path - import hyperspy.api as hs import numpy as np from particlespy import api as ps From 8a9e10526e220b8567ccec859d57ac3920297c5d Mon Sep 17 00:00:00 2001 From: Tom Slater Date: Sun, 1 Jun 2025 19:47:31 +0100 Subject: [PATCH 2/3] Update environment.yml --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 711b293..448c3be 100644 --- a/environment.yml +++ b/environment.yml @@ -9,4 +9,4 @@ dependencies: - scikit-learn>=0.21 - trackpy - numpy>=1.16.5 - - pyqt>=5.14.0 + - pyqt>=5.14.0,<6.0 From 63adaedae03e303695020aad534e841b8e7ed34d Mon Sep 17 00:00:00 2001 From: Tom Slater Date: Sun, 1 Jun 2025 19:53:57 +0100 Subject: [PATCH 3/3] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d7e43d3..980680f 100644 --- a/setup.py +++ b/setup.py @@ -8,12 +8,12 @@ "scikit-learn>=0.21", "trackpy", "numpy>=1.16.5", - "PyQt5>=5.14.0"] + "PyQt5>=5.14.0,<6.0"] setuptools.setup( name="particlespy", package_dir={'particlespy':'particlespy'}, - version="0.6.2", + version="0.6.3", author="Thomas Slater", author_email="tjaslater@gmail.com", description="A package to perform particle segmentation and analysis",