From 11822893645ff97038318afbc44710ad01db283d Mon Sep 17 00:00:00 2001 From: Joakim Loxdal Date: Mon, 7 Apr 2025 14:11:35 +0200 Subject: [PATCH 1/2] Update pyside to 6.8.1 to support Python3.13 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 88301bb..8db0ad1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,10 +12,10 @@ requires-python = ">=3.8" dependencies = [ "networkx==3.2.1", "numpy==1.26.4", - "PySide6==6.7.0", - "PySide6_Addons==6.7.0", - "PySide6_Essentials==6.7.0", - "shiboken6==6.7.0", + "PySide6~=6.8.1", + "PySide6_Addons~=6.8.1", + "PySide6_Essentials~=6.8.1", + "shiboken6~=6.8.1", "mal-toolbox==1.*", "mal-simulator==1.*", "qt-material==2.14", From e03c918acb8bb7b1d529e083cb18e9235bfcbaa3 Mon Sep 17 00:00:00 2001 From: sandorstormen Date: Sat, 18 Oct 2025 07:57:05 +0200 Subject: [PATCH 2/2] Fix python versioning in TOML --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8db0ad1..46182c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,9 +6,10 @@ authors = [ {name="Akash Sinha", email="aksinha@kth.se"}, {name="Andrei Buhaiu", email="buhaiu@kth.se"}, {name="Joakim Loxdal", email="loxdal@kth.se"}, + {name="Sandor Berglund", email="sandorb@kth.se"}, ] readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.8,<=3.13" dependencies = [ "networkx==3.2.1", "numpy==1.26.4",