From 42db041be45710109515cc161744f9167487dff2 Mon Sep 17 00:00:00 2001 From: Tobias Latour <95077107+tobiaslatour@users.noreply.github.com> Date: Thu, 6 Mar 2025 15:00:54 +0100 Subject: [PATCH 1/4] Add Python 3.12 to test-job matrix --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 8915341..e3ad0ce 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, 3.12] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From 00d8490c5ac0c8a87c1b68503291bc7cce805fc3 Mon Sep 17 00:00:00 2001 From: Michael Osthege Date: Mon, 10 Mar 2025 12:55:25 +0100 Subject: [PATCH 2/4] Drop EOL Python versions from tests --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index e3ad0ce..35ce8c2 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, 3.12] + python-version: [3.9, 3.10, 3.11, 3.12] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From e9c422d4b42380a2bdd8e9cb9bd6c6907053ca84 Mon Sep 17 00:00:00 2001 From: Michael Osthege Date: Mon, 10 Mar 2025 18:32:34 +0100 Subject: [PATCH 3/4] Use quotes around Python versions --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 35ce8c2..621b7e6 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} From 5ff0501767416db46bc4f532b732b5047eea047b Mon Sep 17 00:00:00 2001 From: Tobias Latour <95077107+tobiaslatour@users.noreply.github.com> Date: Fri, 14 Mar 2025 16:31:53 +0100 Subject: [PATCH 4/4] bump version --- detl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detl/__init__.py b/detl/__init__.py index 1e36456..a097d93 100644 --- a/detl/__init__.py +++ b/detl/__init__.py @@ -1,7 +1,7 @@ from . import parsing from .core import DASwareParser, DASwareVersion, DWData -__version__ = "1.1.0" +__version__ = "1.1.1" parsers = { DASwareVersion.V4: parsing.dw4.DASware4Parser,