From 535ae957a59e348761ce6c79e3c0a30b116b8c62 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 13 May 2026 12:25:15 +0530 Subject: [PATCH 1/2] ci: remove PAT from release workflow Signed-off-by: Keshav Priyadarshi --- .github/workflows/pypi-release.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index e0f29d0..7f3f2bf 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -1,17 +1,6 @@ name: Create library release archives, create a GH release and publish PyPI wheel and sdist on tag in main branch -# This is executed automatically on a tag in the main branch - -# Summary of the steps: -# - build wheels and sdist -# - upload wheels and sdist to PyPI -# - create gh-release and upload wheels and dists there -# TODO: smoke test wheels and sdist -# TODO: add changelog to release text body - -# WARNING: this is designed only for packages building as pure Python wheels - on: workflow_dispatch: push: @@ -90,4 +79,3 @@ jobs: uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 with: verbose: true - password: ${{ secrets.PYPI_API_TOKEN_ABOUTCODE_FEDERATED }} From fcca17a96d777f31fb2a6a74dc82342685db58b6 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 13 May 2026 12:26:18 +0530 Subject: [PATCH 2/2] fix: add package version in setup.cfg Signed-off-by: Keshav Priyadarshi --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index cb60aae..f723b37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [metadata] name = aboutcode.federated +version = 1.0.1 license = Apache-2.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390