From 7a5fcc877ea0d3a5ae56f150f8b2cceb949329ac Mon Sep 17 00:00:00 2001 From: Jonas Lindemann Date: Tue, 12 Aug 2025 22:42:48 +0200 Subject: [PATCH 1/4] Update requirements.txt --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 63ea9be..447a2f2 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -4,7 +4,7 @@ matplotlib scipy tabulate qtpy -pyqt +pyqt5 pyvtk ipython_genutils==0.1.0 sphinx From 59dc0ba525d3632d2afedd91886e986b83747899 Mon Sep 17 00:00:00 2001 From: Jonas Lindemann Date: Tue, 12 Aug 2025 22:46:56 +0200 Subject: [PATCH 2/4] Update conf.py --- docs/source/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9f12a43..7ac3486 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,6 +16,11 @@ import sys import os +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +sys.path.insert(0, os.path.abspath('../../src')) + # -- General configuration ------------------------------------------------ extensions = [ From 74223993cce77e8a366bbf34ab21c482a73d2cde Mon Sep 17 00:00:00 2001 From: Jonas Lindemann Date: Tue, 12 Aug 2025 22:53:39 +0200 Subject: [PATCH 3/4] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ad6f96f..22b1cf6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ dependencies = [ "gmsh", "matplotlib", - "numpy < 2", + "numpy", "scipy", "tabulate", ] From 00c45da72ed676d8b5ba5f01b4500093c7a65e94 Mon Sep 17 00:00:00 2001 From: Jonas Lindemann Date: Tue, 12 Aug 2025 23:35:15 +0200 Subject: [PATCH 4/4] Fixed package settings. --- .pdm-python | 1 - pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 .pdm-python diff --git a/.pdm-python b/.pdm-python deleted file mode 100644 index f8efda1..0000000 --- a/.pdm-python +++ /dev/null @@ -1 +0,0 @@ -C:/Users/jonas/miniconda3/envs/calfem-dev/python.EXE \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 22b1cf6..470323e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "tabulate", ] -requires-python = ">=3.8" +requires-python = ">=3.9" readme = "README.md" license = {text = "MIT"} keywords = [ @@ -30,8 +30,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Software Development :: Build Tools", ]