From 4c2772b87b7434e43668d9a89873d14eb0f05c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Ftay=20Fabry?= Date: Wed, 11 Dec 2024 23:50:36 +0100 Subject: [PATCH 1/3] unpin numpy, python --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8ab3f5a7e..5ccbc92b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Physics", # TODO: add more topics here! ] dynamic = [ @@ -51,7 +52,7 @@ dependencies = [ "ipython", "meshio", "networkx>=2.8.2", - "numpy>=1.20,<2", + "numpy>=1.20", "pandas>=1.5", "pint>=0.21", "pint-xarray>=0.3", @@ -83,7 +84,7 @@ optional-dependencies.test = [ "pytest-xdist", ] optional-dependencies.vis = [ - "weldx-widgets>=0.2.3", + "weldx-widgets>=0.2.5", ] urls.bug_tracker = "https://github.com/BAMweldx/weldx/issues" urls.changelog = "https://github.com/BAMweldx/weldx/blob/master/CHANGELOG.md" From a13e0d1ee957743ab35dcffe19700ccb4f01d4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Ftay=20Fabry?= Date: Wed, 11 Dec 2024 23:51:31 +0100 Subject: [PATCH 2/3] add py313 to test matrix --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 8af8c0c78..44ae0dda1 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -33,7 +33,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - py: ['3.9', '3.10', '3.11', '3.12'] + py: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 with: From c5e8927c4680707ca2b0323281cb50ec78993081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Ftay=20Fabry?= Date: Wed, 11 Dec 2024 23:52:07 +0100 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5ccbc92b3..c81971ece 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ authors = [ { name = "Martin K. Scherer", email = "martin.scherer@bam.de" }, { name = "Michael Winkler", email = "michael.winkler@bam.de" }, ] -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.14" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Education",