From 762638983157c1ea0588af1dd778773b261f1b12 Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Tue, 3 Feb 2026 21:25:46 +0100 Subject: [PATCH] Enable PyPI publish, bump to v0.1.1 --- .github/workflows/publish.yml | 5 ++--- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7f70228..7dc25a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,9 +38,8 @@ jobs: - name: Build package run: python -m build - # Uncomment when PyPI trusted publisher is configured - # - name: Publish to PyPI - # uses: pypa/gh-action-pypi-publish@release/v1 + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 - name: Create GitHub Release uses: softprops/action-gh-release@v2 diff --git a/pyproject.toml b/pyproject.toml index 4e9aff6..28f7ada 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tensors" -version = "0.1.0" +version = "0.1.1" description = "Read safetensor metadata and fetch CivitAI model information" readme = "README.md" requires-python = ">=3.12"