From 42e7a473ece01ac8aaa419de3190509deaaa5efa Mon Sep 17 00:00:00 2001 From: Mr Finchum Date: Mon, 3 Nov 2025 12:55:36 +0100 Subject: [PATCH] Fix: fixing python version to satisfy dependencies --- CHANGELOG.md | 4 ++++ src/pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9229c..60c93a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## 1.8.x +### 1.8.1: Bug fix - changed python version (20.11.03) +- Changed the dependency of python in the pyproject.toml to fit with pyside6 since we need pyside6. +- With python v3.14 we getting error that dependencies can't be meet. + ### 1.8.0: Feature - Adding wiki and reform readme (25.09.29) - Trimmed readme and moved some content to the wiki. - About now linkes to Forgejo not GitLab, and the new wiki. diff --git a/src/pyproject.toml b/src/pyproject.toml index ec4f716..dbd036f 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] authors = [{ name = "Mr Finchum" }] description = "User interface for optima35." readme = "../pip_README.md" -requires-python = ">=3.8, <4.0" +requires-python = ">=3.9, <3.14" dependencies = [ "optima35>=1.0.0, <2.0.0", "PyPiUpdater>=0.7.2, <1.0.0",