From 5c7e24f8f5358c21e208620b764438dff31e2bb4 Mon Sep 17 00:00:00 2001 From: Dag Brattli Date: Mon, 8 Dec 2025 18:45:01 +0100 Subject: [PATCH] chore: use static version in pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove pyproject.toml from release-please managed files and set version to 0.0.0 since we don't publish to PyPI. This fixes the CI build failure caused by release-please generating PEP 440 non-compliant versions like 5.0.0-alpha.20.1. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- pyproject.toml | 2 +- release-please-config.json | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4b34e2d..ee0f3f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Fable.Python" -version = "5.0.0-alpha.20.1" +version = "0.0.0" description = "Fable" authors = [{ name = "Dag Brattli", email = "dag@brattli.net" }] requires-python = ">= 3.12, < 4" diff --git a/release-please-config.json b/release-please-config.json index 71d870c..8038f2c 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -8,14 +8,7 @@ "bump-patch-for-minor-pre-major": true, "include-component-in-tag": false, "include-v-in-tag": true, - "changelog-path": "CHANGELOG.md", - "extra-files": [ - { - "type": "toml", - "path": "pyproject.toml", - "jsonpath": "$.project.version" - } - ] + "changelog-path": "CHANGELOG.md" } } }