From 170fb9a6f1e3659927c9515b13e85267ceb89fc5 Mon Sep 17 00:00:00 2001 From: Michael Welles Date: Mon, 19 Jan 2026 17:20:45 -0500 Subject: [PATCH] fix(cd): remove uv version step incompatible with dynamic versioning The project uses dynamic versioning via pydgraph/meta.py, which makes `uv version` fail with "cannot get or set dynamic project versions". The version is already set correctly from meta.py during build. --- .github/workflows/cd-pydgraph.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/cd-pydgraph.yml b/.github/workflows/cd-pydgraph.yml index 6cf1cae..1b31cbc 100644 --- a/.github/workflows/cd-pydgraph.yml +++ b/.github/workflows/cd-pydgraph.yml @@ -32,8 +32,6 @@ jobs: run: SKIP=no-commit-to-branch make check - name: Run tests run: make test - - name: Set version - run: uv version ${{ github.event.inputs.releasetag }} - name: Build release run: make clean build - name: Publish release