From eec233ab397eb18b1fbe2d63c9f606f2315032e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20St=C3=B6cker?= Date: Fri, 26 Jun 2026 15:23:43 +0200 Subject: [PATCH 1/2] fetch tags and supported only python versions >= 3.12 --- .github/workflows/wheels.yml | 1 + pyproject.toml | 7 ++----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 32baf4a..b659aa9 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -24,6 +24,7 @@ jobs: with: submodules: recursive persist-credentials: false + fetch-tags: true # Used to host cibuildwheel - uses: actions/setup-python@v6 diff --git a/pyproject.toml b/pyproject.toml index bcafbdc..f591e89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ dependencies = [ "pandas>=2.3.3", "pytest>=8.4.2", ] -requires-python = ">=3.9" +requires-python = ">=3.12" authors = [{ name = "RAYX team", email = "rayx-support@helmholtz-berlin.de" }] maintainers = [ { name = "RAYX team", email = "rayx-support@helmholtz-berlin.de" }, @@ -45,7 +45,4 @@ pythonpath = ["python"] package = false [dependency-groups] -dev = [ - "setuptools-scm>=10.2.0", - "twine>=6.2.0", -] +dev = ["setuptools-scm>=10.2.0", "twine>=6.2.0"] From 6b4afdb12dadfc31647b51080eb976c21c0e8202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20St=C3=B6cker?= Date: Fri, 26 Jun 2026 15:49:09 +0200 Subject: [PATCH 2/2] set fetch-depth to 0 --- .github/workflows/wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b659aa9..044c233 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -24,6 +24,7 @@ jobs: with: submodules: recursive persist-credentials: false + fetch-depth: 0 fetch-tags: true # Used to host cibuildwheel