From 034b5a1206ce76162ec553cdeb389da942a918bf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Apr 2026 11:58:20 +0000 Subject: [PATCH 1/2] Fix isort import ordering in tests Agent-Logs-Url: https://github.com/Neures-1158/labchart_txt_parser/sessions/f869c64a-de7c-4b3b-87a5-a74eefe5d065 Co-authored-by: dambach <20612130+dambach@users.noreply.github.com> --- tests/test_core.py | 1 + tests/test_parser.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/test_core.py b/tests/test_core.py index 67a5d79..f2f6f1e 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4,6 +4,7 @@ import pandas as pd import pytest + from labchart_parser.core import LabChartFile from labchart_parser.exceptions import InvalidChannelError diff --git a/tests/test_parser.py b/tests/test_parser.py index fdc4e90..2bc0141 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -6,6 +6,7 @@ import numpy as np import pandas as pd import pytest + from labchart_parser.exceptions import FileParsingError from labchart_parser.parser import parse_labchart_txt From 104868014cca36623fb9d034eced71cc37c79a0e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Apr 2026 12:00:58 +0000 Subject: [PATCH 2/2] Fix CI lint and packaging metadata compatibility Agent-Logs-Url: https://github.com/Neures-1158/labchart_txt_parser/sessions/f869c64a-de7c-4b3b-87a5-a74eefe5d065 Co-authored-by: dambach <20612130+dambach@users.noreply.github.com> --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b2b98f2..f67325b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=61.0", "wheel"] +requires = ["setuptools>=61.0,<77", "wheel"] build-backend = "setuptools.build_meta" [project] @@ -7,7 +7,7 @@ name = "labchart_parser" version = "0.2.0" description = "Parser for ADInstruments LabChart text exports" readme = "README.md" -license = { file = "LICENSE" } +license = { text = "MIT" } authors = [ {name = "Damien Bachasson", email = "damien.bachasson@gmail.com"} ] @@ -22,7 +22,6 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ] keywords = ["LabChart", "parser", "ADInstruments", "physiology", "signals"]