3 Commits

Author SHA1 Message Date
lars dfff36b1d2 Use PACKAGE_DEPLOY_KEY PAT for plotstyle publish workflow
Publish plotstyle / build-and-publish (push) Successful in 7s
CI / test:pytest (push) Successful in 22s
CI / lint:ruff (push) Successful in 16s
CI / format:ruff (push) Successful in 15s
CI / typecheck:ty (push) Successful in 21s
CI / vulnerabilities:pip-audit (push) Successful in 18s
The built-in Actions token was rejected by the Gitea package registry
(401 reqPackageAccess); a PAT with write:package scope is required.
2026-07-24 11:04:31 +02:00
lars 7fdb1a200f Bump plotstyle to 1.0.0 and gallery to 0.2.0
Publish plotstyle / build-and-publish (push) Failing after 9s
CI / test:pytest (push) Successful in 20s
CI / lint:ruff (push) Successful in 14s
CI / format:ruff (push) Successful in 17s
CI / typecheck:ty (push) Successful in 15s
CI / vulnerabilities:pip-audit (push) Successful in 18s
2026-07-24 10:52:41 +02:00
lars f3c03a0d0c Merge pull request 'Rewrite gallery as an installable package, add plotstyle, migrate build/CI to uv' (#1) from dev into main
CI / lint:ruff (push) Successful in 16s
CI / format:ruff (push) Successful in 16s
CI / typecheck:ty (push) Successful in 14s
CI / vulnerabilities:pip-audit (push) Successful in 19s
CI / test:pytest (push) Successful in 24s
Reviewed-on: #1
2026-07-24 10:49:38 +02:00
5 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -7,7 +7,6 @@ on:
permissions: permissions:
contents: read contents: read
packages: write
jobs: jobs:
publish: publish:
@@ -34,6 +33,6 @@ jobs:
- name: Publish to Gitea package registry - name: Publish to Gitea package registry
env: env:
UV_PUBLISH_USERNAME: ${{ github.actor }} UV_PUBLISH_USERNAME: lars
UV_PUBLISH_PASSWORD: ${{ secrets.GITHUB_TOKEN }} UV_PUBLISH_PASSWORD: ${{ secrets.PACKAGE_DEPLOY_KEY }}
run: uv publish --publish-url "${{ github.server_url }}/api/packages/${{ github.repository_owner }}/pypi" dist/* run: uv publish --publish-url "${{ github.server_url }}/api/packages/${{ github.repository_owner }}/pypi" dist/*
+1 -1
View File
@@ -18,7 +18,7 @@ Example usage:
success = generate(config, verbose=True) success = generate(config, verbose=True)
""" """
__version__ = "0.1.0" __version__ = "0.2.0"
__author__ = "K. Schmidt" __author__ = "K. Schmidt"
from gallery.api import generate from gallery.api import generate
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "uv_build"
[project] [project]
name = "plotstyle" name = "plotstyle"
version = "0.1.0" version = "1.0.0"
description = "KIT corporate-design matplotlib styling toolkit for consistent scientific figures" description = "KIT corporate-design matplotlib styling toolkit for consistent scientific figures"
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.8"
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "uv_build"
[project] [project]
name = "gallery" name = "gallery"
version = "0.1.3" version = "0.2.0"
description = "Scientific Gallery Generator - Create responsive HTML galleries from plot collections" description = "Scientific Gallery Generator - Create responsive HTML galleries from plot collections"
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.8"
Generated
+2 -2
View File
@@ -846,7 +846,7 @@ wheels = [
[[package]] [[package]]
name = "gallery" name = "gallery"
version = "0.1.3" version = "0.2.0"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "argcomplete" }, { name = "argcomplete" },
@@ -2900,7 +2900,7 @@ wheels = [
[[package]] [[package]]
name = "plotstyle" name = "plotstyle"
version = "0.1.0" version = "1.0.0"
source = { editable = "plotstyle" } source = { editable = "plotstyle" }
dependencies = [ dependencies = [
{ name = "matplotlib", version = "3.7.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" }, { name = "matplotlib", version = "3.7.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" },