From 241801eb27428820c2646ab46a1889e4afeba5ef Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 18 Oct 2025 18:26:45 +0200 Subject: [PATCH 1/3] Initial commit with task details for issue #123 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: undefined --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..b06706f --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: undefined +Your prepared branch: issue-123-656309e4 +Your prepared working directory: /tmp/gh-issue-solver-1760804803428 + +Proceed. \ No newline at end of file From 1ce0b5f8b76925afc95d365490e03477b203515a Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 18 Oct 2025 18:29:23 +0200 Subject: [PATCH 2/3] [Python] Update to require Python >= 3.13 and reduce CI load MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated Python package to require only Python 3.13 or higher to reduce GitHub Actions load. - Updated pyproject.toml to require Python >= 3.13 - Removed Python version classifiers for 3.8-3.12, kept only 3.13 - Updated GitHub Actions workflow to test only Python 3.13 instead of matrix testing 3.8-3.12 - Bumped package version from 0.9.0 to 0.10.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/python.yml | 11 ++++------- python/pyproject.toml | 10 +++------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f483aac..b5d024c 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -50,17 +50,14 @@ jobs: needs: [findChangedPythonFiles] if: ${{ needs.findChangedPythonFiles.outputs.isPythonFilesChanged == 'true' }} runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 with: submodules: true - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.13 uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: '3.13' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -81,7 +78,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -122,7 +119,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.13' - name: Check if GitHub release already exists id: release-check run: | diff --git a/python/pyproject.toml b/python/pyproject.toml index c36f5b2..8ce04da 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "links-notation" -version = "0.9.0" +version = "0.10.0" description = "Python implementation of the Lino protocol parser" readme = "README.md" license = {text = "Unlicense"} @@ -17,15 +17,11 @@ classifiers = [ "Intended Audience :: Developers", "License :: Public Domain", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing", ] -requires-python = ">=3.8" +requires-python = ">=3.13" [project.urls] Homepage = "https://github.com/link-foundation/links-notation" From 7a0a4c56970729e709f27ad1beb50cb70feaec75 Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 18 Oct 2025 18:32:40 +0200 Subject: [PATCH 3/3] Remove CLAUDE.md configuration file --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index b06706f..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: undefined -Your prepared branch: issue-123-656309e4 -Your prepared working directory: /tmp/gh-issue-solver-1760804803428 - -Proceed. \ No newline at end of file