pkg-exporter 0.2.8.dev76__tar.gz → 0.2.8.dev80__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.copier-answers.yml +2 -1
  2. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.forgejo/workflows/lint.yaml +1 -1
  3. pkg_exporter-0.2.8.dev80/.forgejo/workflows/publish.yaml +62 -0
  4. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.pre-commit-config.yaml +1 -1
  5. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/PKG-INFO +1 -1
  6. pkg_exporter-0.2.8.dev80/cliff.toml +76 -0
  7. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/renovate.json +4 -2
  8. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/uv.lock +25 -25
  9. pkg_exporter-0.2.8.dev76/.forgejo/workflows/publish.yaml +0 -34
  10. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.commitlintrc.yaml +0 -0
  11. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.flake8 +0 -0
  12. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.forgejo/workflows/commitlint.yaml +0 -0
  13. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/.gitignore +0 -0
  14. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/LICENSE +0 -0
  15. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/README.md +0 -0
  16. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/docs/00-pve-exporter +0 -0
  17. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/pyproject.toml +0 -0
  18. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/__init__.py +0 -0
  19. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/pkgmanager/__init__.py +0 -0
  20. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/pkgmanager/apt.py +0 -0
  21. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/reboot.py +0 -0
  22. {pkg_exporter-0.2.8.dev76 → pkg_exporter-0.2.8.dev80}/src/pkg_exporter/textfile.py +0 -0
@@ -1,8 +1,9 @@
1
1
  # Changes here will be overwritten by Copier.
2
- _commit: 0.0.186
2
+ _commit: 0.0.202
3
3
  _src_path: https://codeberg.org/margau/copier-python-uv.git
4
4
  code_dir: src
5
5
  container: false
6
+ forgejo_publish: true
6
7
  forgejo_url: https://codeberg.org/margau/pkg-exporter
7
8
  ignore_pylint: true
8
9
  ignore_ruff: false
@@ -11,7 +11,7 @@ jobs:
11
11
  lint-check:
12
12
  runs-on: docker
13
13
  container:
14
- image: codeberg.org/margau/buildenv-uv:latest@sha256:eaa6f1c4510e6d5c0c81164a127e281be029d2ed261e060880145c024e890ce4
14
+ image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
15
15
 
16
16
  steps:
17
17
  - uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -0,0 +1,62 @@
1
+ name: publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - 'v*'
9
+ # non-main branches are handled by pull_request
10
+ pull_request:
11
+
12
+ jobs:
13
+ build_publish:
14
+ name: "Build (and Publish)"
15
+ runs-on: docker
16
+ container:
17
+ image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
18
+
19
+ steps:
20
+ - uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
21
+ with:
22
+ fetch-depth: 0
23
+ - name: Build the project
24
+ run: uv build
25
+ - name: Publish release to pypi
26
+ run: uv publish
27
+ if: "${{ startsWith(github.ref, 'refs/tags') }}"
28
+ env:
29
+ UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
30
+ - name: Publish dev version to pypi
31
+ run: uv publish
32
+ if: "${{ github.ref == 'refs/heads/main' }}"
33
+ env:
34
+ UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
35
+ - name: release notes
36
+ if: "${{ startsWith(github.ref, 'refs/tags') }}"
37
+ run: |
38
+ git-cliff --current -o notes.md
39
+ env:
40
+ GITEA_REPO: "${{ forgejo.repository }}"
41
+ - name: Upload release assets to Forgejo
42
+ uses: https://code.forgejo.org/actions/forgejo-release@6c747b97f9452ba9203be1d1b326432185d9a03f # v2.10.0
43
+ if: "${{ startsWith(github.ref, 'refs/tags') }}"
44
+ with:
45
+ direction: upload
46
+ release-dir: dist
47
+ release-notes-file: notes.md
48
+ releasenotes-draft:
49
+ name: "Draft Release Notes"
50
+ runs-on: docker
51
+ container:
52
+ image: codeberg.org/margau/buildenv-uv:latest@sha256:73f9e4d942f6e30c243f3faad7cf302c4e56dfb5a3b2d115bc1e58ab851aa87d
53
+
54
+ steps:
55
+ - uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
56
+ with:
57
+ fetch-depth: 0
58
+ - name: draft release notes
59
+ run: |
60
+ git-cliff --unreleased
61
+ env:
62
+ GITEA_REPO: "${{ forgejo.repository }}"
@@ -10,7 +10,7 @@ repos:
10
10
  stages: [commit-msg]
11
11
  args: []
12
12
  - repo: https://github.com/astral-sh/ruff-pre-commit
13
- rev: v0.15.0
13
+ rev: v0.15.1
14
14
  hooks:
15
15
  # Run the linter.
16
16
  - id: ruff-check
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pkg-exporter
3
- Version: 0.2.8.dev76
3
+ Version: 0.2.8.dev80
4
4
  Summary: This project provides an textfile-based exporter for apt-repositories
5
5
  Project-URL: Documentation, https://codeberg.org/margau/pkg-exporter/src/branch/main#readme
6
6
  Project-URL: Issues, https://codeberg.org/margau/pkg-exporter/issues
@@ -0,0 +1,76 @@
1
+ # git-cliff ~ configuration file
2
+ # https://git-cliff.org/docs/configuration
3
+
4
+ [changelog]
5
+ # A Tera template to be rendered for each release in the changelog.
6
+ # See https://keats.github.io/tera/docs/#introduction
7
+ body = """
8
+ {% if version %}\
9
+ # [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
10
+ {% else %}\
11
+ # [unreleased]
12
+ {% endif %}\
13
+ {%- for group, commits in commits | group_by(attribute="group") %}
14
+ ## {{ group | striptags | trim | upper_first }}
15
+ {%- for commit in commits %}
16
+ * {{ commit.message | split(pat="\n") | first | trim }}\
17
+ {% if commit.remote.username %} by @{{ commit.remote.username }}{%- else %} by {{ commit.author.name }} {%- endif -%}
18
+ {% if commit.remote.pr_number %} in \
19
+ [#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pulls/{{ commit.remote.pr_number }}) \
20
+ {%- endif %}
21
+ {%- endfor %}
22
+ {%- endfor %}
23
+
24
+ {%- if gitea -%}
25
+ {% if gitea.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
26
+ {% raw %}\n{% endraw -%}
27
+ ## New Contributors
28
+ {%- endif %}\
29
+ {% for contributor in gitea.contributors | filter(attribute="is_first_time", value=true) %}
30
+ * @{{ contributor.username }} made their first contribution
31
+ {%- if contributor.pr_number %} in \
32
+ [#{{ contributor.pr_number }}]({{ self::remote_url() }}/pulls/{{ contributor.pr_number }}) \
33
+ {%- endif %}
34
+ {%- endfor -%}
35
+ {%- endif -%}
36
+
37
+ {% if version %}
38
+ {% if previous.version %}
39
+ **Full Changelog**: {{ self::remote_url() }}/compare/{{ previous.version }}...{{ version }}
40
+ {% endif %}
41
+ {% else -%}
42
+ {% raw %}\n{% endraw %}
43
+ {% endif %}
44
+
45
+ {%- macro remote_url() -%}
46
+ https://codeberg.org/entropia/paperless-asn-qr-codes
47
+ {%- endmacro -%}
48
+ """
49
+ # Remove leading and trailing whitespaces from the changelog's body.
50
+ trim = true
51
+ # A Tera template to be rendered as the changelog's footer.
52
+ # See https://keats.github.io/tera/docs/#introduction
53
+ footer = """
54
+ <!-- generated by git-cliff -->
55
+ """
56
+ # An array of regex based postprocessors to modify the changelog.
57
+ # Replace the placeholder `<REPO>` with a URL.
58
+ postprocessors = []
59
+
60
+ [git]
61
+ # Parse commits according to the conventional commits specification.
62
+ # See https://www.conventionalcommits.org
63
+ conventional_commits = false
64
+ # Exclude commits that do not match the conventional commits specification.
65
+ filter_unconventional = true
66
+ # Split commits on newlines, treating each line as an individual commit.
67
+ split_commits = false
68
+ # An array of regex based parsers to modify commit messages prior to further processing.
69
+ commit_preprocessors = [{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" }]
70
+ # Exclude commits that are not matched by any commit parser.
71
+ filter_commits = false
72
+ # Order releases topologically instead of chronologically.
73
+ topo_order = false
74
+ # Order of commits in each group/release within the changelog.
75
+ # Allowed values: newest, oldest
76
+ sort_commits = "newest"
@@ -9,7 +9,8 @@
9
9
  ".forgejo/workflows/commitlint.yaml",
10
10
  ".forgejo/workflows/lint.yaml",
11
11
  ".forgejo/workflows/publish.yaml",
12
- ".forgejo/workflows/container.yaml"
12
+ ".forgejo/workflows/container.yaml",
13
+ "Containerfile"
13
14
  ],
14
15
  "enabled": false
15
16
  },
@@ -18,7 +19,8 @@
18
19
  ".forgejo/workflows/commitlint.yaml",
19
20
  ".forgejo/workflows/lint.yaml",
20
21
  ".forgejo/workflows/publish.yaml",
21
- ".forgejo/workflows/container.yaml"
22
+ ".forgejo/workflows/container.yaml",
23
+ "Containerfile"
22
24
  ],
23
25
  "matchManagers": [
24
26
  "copier"
@@ -9,14 +9,14 @@ resolution-markers = [
9
9
 
10
10
  [[package]]
11
11
  name = "astroid"
12
- version = "4.0.3"
12
+ version = "4.0.4"
13
13
  source = { registry = "https://pypi.org/simple" }
14
14
  dependencies = [
15
15
  { name = "typing-extensions", marker = "python_full_version < '3.11'" },
16
16
  ]
17
- sdist = { url = "https://files.pythonhosted.org/packages/a1/ca/c17d0f83016532a1ad87d1de96837164c99d47a3b6bbba28bd597c25b37a/astroid-4.0.3.tar.gz", hash = "sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3", size = 406224, upload-time = "2026-01-03T22:14:26.096Z" }
17
+ sdist = { url = "https://files.pythonhosted.org/packages/07/63/0adf26577da5eff6eb7a177876c1cfa213856be9926a000f65c4add9692b/astroid-4.0.4.tar.gz", hash = "sha256:986fed8bcf79fb82c78b18a53352a0b287a73817d6dbcfba3162da36667c49a0", size = 406358, upload-time = "2026-02-07T23:35:07.509Z" }
18
18
  wheels = [
19
- { url = "https://files.pythonhosted.org/packages/ce/66/686ac4fc6ef48f5bacde625adac698f41d5316a9753c2b20bb0931c9d4e2/astroid-4.0.3-py3-none-any.whl", hash = "sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14", size = 276443, upload-time = "2026-01-03T22:14:24.412Z" },
19
+ { url = "https://files.pythonhosted.org/packages/b0/cf/1c5f42b110e57bc5502eb80dbc3b03d256926062519224835ef08134f1f9/astroid-4.0.4-py3-none-any.whl", hash = "sha256:52f39653876c7dec3e3afd4c2696920e05c83832b9737afc21928f2d2eb7a753", size = 276445, upload-time = "2026-02-07T23:35:05.344Z" },
20
20
  ]
21
21
 
22
22
  [[package]]
@@ -79,11 +79,11 @@ dev = [
79
79
 
80
80
  [[package]]
81
81
  name = "platformdirs"
82
- version = "4.5.1"
82
+ version = "4.9.1"
83
83
  source = { registry = "https://pypi.org/simple" }
84
- sdist = { url = "https://files.pythonhosted.org/packages/cf/86/0248f086a84f01b37aaec0fa567b397df1a119f73c16f6c7a9aac73ea309/platformdirs-4.5.1.tar.gz", hash = "sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda", size = 21715, upload-time = "2025-12-05T13:52:58.638Z" }
84
+ sdist = { url = "https://files.pythonhosted.org/packages/6c/d5/763666321efaded11112de8b7a7f2273dd8d1e205168e73c334e54b0ab9a/platformdirs-4.9.1.tar.gz", hash = "sha256:f310f16e89c4e29117805d8328f7c10876eeff36c94eac879532812110f7d39f", size = 28392, upload-time = "2026-02-14T21:02:44.973Z" }
85
85
  wheels = [
86
- { url = "https://files.pythonhosted.org/packages/cb/28/3bfe2fa5a7b9c46fe7e13c97bda14c895fb10fa2ebf1d0abb90e0cea7ee1/platformdirs-4.5.1-py3-none-any.whl", hash = "sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31", size = 18731, upload-time = "2025-12-05T13:52:56.823Z" },
86
+ { url = "https://files.pythonhosted.org/packages/70/77/e8c95e95f1d4cdd88c90a96e31980df7e709e51059fac150046ad67fac63/platformdirs-4.9.1-py3-none-any.whl", hash = "sha256:61d8b967d34791c162d30d60737369cbbd77debad5b981c4bfda1842e71e0d66", size = 21307, upload-time = "2026-02-14T21:02:43.492Z" },
87
87
  ]
88
88
 
89
89
  [[package]]
@@ -116,27 +116,27 @@ wheels = [
116
116
 
117
117
  [[package]]
118
118
  name = "ruff"
119
- version = "0.15.0"
119
+ version = "0.15.1"
120
120
  source = { registry = "https://pypi.org/simple" }
121
- sdist = { url = "https://files.pythonhosted.org/packages/c8/39/5cee96809fbca590abea6b46c6d1c586b49663d1d2830a751cc8fc42c666/ruff-0.15.0.tar.gz", hash = "sha256:6bdea47cdbea30d40f8f8d7d69c0854ba7c15420ec75a26f463290949d7f7e9a", size = 4524893, upload-time = "2026-02-03T17:53:35.357Z" }
121
+ sdist = { url = "https://files.pythonhosted.org/packages/04/dc/4e6ac71b511b141cf626357a3946679abeba4cf67bc7cc5a17920f31e10d/ruff-0.15.1.tar.gz", hash = "sha256:c590fe13fb57c97141ae975c03a1aedb3d3156030cabd740d6ff0b0d601e203f", size = 4540855, upload-time = "2026-02-12T23:09:09.998Z" }
122
122
  wheels = [
123
- { url = "https://files.pythonhosted.org/packages/bc/88/3fd1b0aa4b6330d6aaa63a285bc96c9f71970351579152d231ed90914586/ruff-0.15.0-py3-none-linux_armv6l.whl", hash = "sha256:aac4ebaa612a82b23d45964586f24ae9bc23ca101919f5590bdb368d74ad5455", size = 10354332, upload-time = "2026-02-03T17:52:54.892Z" },
124
- { url = "https://files.pythonhosted.org/packages/72/f6/62e173fbb7eb75cc29fe2576a1e20f0a46f671a2587b5f604bfb0eaf5f6f/ruff-0.15.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:dcd4be7cc75cfbbca24a98d04d0b9b36a270d0833241f776b788d59f4142b14d", size = 10767189, upload-time = "2026-02-03T17:53:19.778Z" },
125
- { url = "https://files.pythonhosted.org/packages/99/e4/968ae17b676d1d2ff101d56dc69cf333e3a4c985e1ec23803df84fc7bf9e/ruff-0.15.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d747e3319b2bce179c7c1eaad3d884dc0a199b5f4d5187620530adf9105268ce", size = 10075384, upload-time = "2026-02-03T17:53:29.241Z" },
126
- { url = "https://files.pythonhosted.org/packages/a2/bf/9843c6044ab9e20af879c751487e61333ca79a2c8c3058b15722386b8cae/ruff-0.15.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:650bd9c56ae03102c51a5e4b554d74d825ff3abe4db22b90fd32d816c2e90621", size = 10481363, upload-time = "2026-02-03T17:52:43.332Z" },
127
- { url = "https://files.pythonhosted.org/packages/55/d9/4ada5ccf4cd1f532db1c8d44b6f664f2208d3d93acbeec18f82315e15193/ruff-0.15.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a6664b7eac559e3048223a2da77769c2f92b43a6dfd4720cef42654299a599c9", size = 10187736, upload-time = "2026-02-03T17:53:00.522Z" },
128
- { url = "https://files.pythonhosted.org/packages/86/e2/f25eaecd446af7bb132af0a1d5b135a62971a41f5366ff41d06d25e77a91/ruff-0.15.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f811f97b0f092b35320d1556f3353bf238763420ade5d9e62ebd2b73f2ff179", size = 10968415, upload-time = "2026-02-03T17:53:15.705Z" },
129
- { url = "https://files.pythonhosted.org/packages/e7/dc/f06a8558d06333bf79b497d29a50c3a673d9251214e0d7ec78f90b30aa79/ruff-0.15.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:761ec0a66680fab6454236635a39abaf14198818c8cdf691e036f4bc0f406b2d", size = 11809643, upload-time = "2026-02-03T17:53:23.031Z" },
130
- { url = "https://files.pythonhosted.org/packages/dd/45/0ece8db2c474ad7df13af3a6d50f76e22a09d078af63078f005057ca59eb/ruff-0.15.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:940f11c2604d317e797b289f4f9f3fa5555ffe4fb574b55ed006c3d9b6f0eb78", size = 11234787, upload-time = "2026-02-03T17:52:46.432Z" },
131
- { url = "https://files.pythonhosted.org/packages/8a/d9/0e3a81467a120fd265658d127db648e4d3acfe3e4f6f5d4ea79fac47e587/ruff-0.15.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcbca3d40558789126da91d7ef9a7c87772ee107033db7191edefa34e2c7f1b4", size = 11112797, upload-time = "2026-02-03T17:52:49.274Z" },
132
- { url = "https://files.pythonhosted.org/packages/b2/cb/8c0b3b0c692683f8ff31351dfb6241047fa873a4481a76df4335a8bff716/ruff-0.15.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:9a121a96db1d75fa3eb39c4539e607f628920dd72ff1f7c5ee4f1b768ac62d6e", size = 11033133, upload-time = "2026-02-03T17:53:33.105Z" },
133
- { url = "https://files.pythonhosted.org/packages/f8/5e/23b87370cf0f9081a8c89a753e69a4e8778805b8802ccfe175cc410e50b9/ruff-0.15.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5298d518e493061f2eabd4abd067c7e4fb89e2f63291c94332e35631c07c3662", size = 10442646, upload-time = "2026-02-03T17:53:06.278Z" },
134
- { url = "https://files.pythonhosted.org/packages/e1/9a/3c94de5ce642830167e6d00b5c75aacd73e6347b4c7fc6828699b150a5ee/ruff-0.15.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:afb6e603d6375ff0d6b0cee563fa21ab570fd15e65c852cb24922cef25050cf1", size = 10195750, upload-time = "2026-02-03T17:53:26.084Z" },
135
- { url = "https://files.pythonhosted.org/packages/30/15/e396325080d600b436acc970848d69df9c13977942fb62bb8722d729bee8/ruff-0.15.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:77e515f6b15f828b94dc17d2b4ace334c9ddb7d9468c54b2f9ed2b9c1593ef16", size = 10676120, upload-time = "2026-02-03T17:53:09.363Z" },
136
- { url = "https://files.pythonhosted.org/packages/8d/c9/229a23d52a2983de1ad0fb0ee37d36e0257e6f28bfd6b498ee2c76361874/ruff-0.15.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:6f6e80850a01eb13b3e42ee0ebdf6e4497151b48c35051aab51c101266d187a3", size = 11201636, upload-time = "2026-02-03T17:52:57.281Z" },
137
- { url = "https://files.pythonhosted.org/packages/6f/b0/69adf22f4e24f3677208adb715c578266842e6e6a3cc77483f48dd999ede/ruff-0.15.0-py3-none-win32.whl", hash = "sha256:238a717ef803e501b6d51e0bdd0d2c6e8513fe9eec14002445134d3907cd46c3", size = 10465945, upload-time = "2026-02-03T17:53:12.591Z" },
138
- { url = "https://files.pythonhosted.org/packages/51/ad/f813b6e2c97e9b4598be25e94a9147b9af7e60523b0cb5d94d307c15229d/ruff-0.15.0-py3-none-win_amd64.whl", hash = "sha256:dd5e4d3301dc01de614da3cdffc33d4b1b96fb89e45721f1598e5532ccf78b18", size = 11564657, upload-time = "2026-02-03T17:52:51.893Z" },
139
- { url = "https://files.pythonhosted.org/packages/f6/b0/2d823f6e77ebe560f4e397d078487e8d52c1516b331e3521bc75db4272ca/ruff-0.15.0-py3-none-win_arm64.whl", hash = "sha256:c480d632cc0ca3f0727acac8b7d053542d9e114a462a145d0b00e7cd658c515a", size = 10865753, upload-time = "2026-02-03T17:53:03.014Z" },
123
+ { url = "https://files.pythonhosted.org/packages/23/bf/e6e4324238c17f9d9120a9d60aa99a7daaa21204c07fcd84e2ef03bb5fd1/ruff-0.15.1-py3-none-linux_armv6l.whl", hash = "sha256:b101ed7cf4615bda6ffe65bdb59f964e9f4a0d3f85cbf0e54f0ab76d7b90228a", size = 10367819, upload-time = "2026-02-12T23:09:03.598Z" },
124
+ { url = "https://files.pythonhosted.org/packages/b3/ea/c8f89d32e7912269d38c58f3649e453ac32c528f93bb7f4219258be2e7ed/ruff-0.15.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:939c995e9277e63ea632cc8d3fae17aa758526f49a9a850d2e7e758bfef46602", size = 10798618, upload-time = "2026-02-12T23:09:22.928Z" },
125
+ { url = "https://files.pythonhosted.org/packages/5e/0f/1d0d88bc862624247d82c20c10d4c0f6bb2f346559d8af281674cf327f15/ruff-0.15.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:1d83466455fdefe60b8d9c8df81d3c1bbb2115cede53549d3b522ce2bc703899", size = 10148518, upload-time = "2026-02-12T23:08:58.339Z" },
126
+ { url = "https://files.pythonhosted.org/packages/f5/c8/291c49cefaa4a9248e986256df2ade7add79388fe179e0691be06fae6f37/ruff-0.15.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9457e3c3291024866222b96108ab2d8265b477e5b1534c7ddb1810904858d16", size = 10518811, upload-time = "2026-02-12T23:09:31.865Z" },
127
+ { url = "https://files.pythonhosted.org/packages/c3/1a/f5707440e5ae43ffa5365cac8bbb91e9665f4a883f560893829cf16a606b/ruff-0.15.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:92c92b003e9d4f7fbd33b1867bb15a1b785b1735069108dfc23821ba045b29bc", size = 10196169, upload-time = "2026-02-12T23:09:17.306Z" },
128
+ { url = "https://files.pythonhosted.org/packages/2a/ff/26ddc8c4da04c8fd3ee65a89c9fb99eaa5c30394269d424461467be2271f/ruff-0.15.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fe5c41ab43e3a06778844c586251eb5a510f67125427625f9eb2b9526535779", size = 10990491, upload-time = "2026-02-12T23:09:25.503Z" },
129
+ { url = "https://files.pythonhosted.org/packages/fc/00/50920cb385b89413f7cdb4bb9bc8fc59c1b0f30028d8bccc294189a54955/ruff-0.15.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66a6dd6df4d80dc382c6484f8ce1bcceb55c32e9f27a8b94c32f6c7331bf14fb", size = 11843280, upload-time = "2026-02-12T23:09:19.88Z" },
130
+ { url = "https://files.pythonhosted.org/packages/5d/6d/2f5cad8380caf5632a15460c323ae326f1e1a2b5b90a6ee7519017a017ca/ruff-0.15.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a4a42cbb8af0bda9bcd7606b064d7c0bc311a88d141d02f78920be6acb5aa83", size = 11274336, upload-time = "2026-02-12T23:09:14.907Z" },
131
+ { url = "https://files.pythonhosted.org/packages/a3/1d/5f56cae1d6c40b8a318513599b35ea4b075d7dc1cd1d04449578c29d1d75/ruff-0.15.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ab064052c31dddada35079901592dfba2e05f5b1e43af3954aafcbc1096a5b2", size = 11137288, upload-time = "2026-02-12T23:09:07.475Z" },
132
+ { url = "https://files.pythonhosted.org/packages/cd/20/6f8d7d8f768c93b0382b33b9306b3b999918816da46537d5a61635514635/ruff-0.15.1-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:5631c940fe9fe91f817a4c2ea4e81f47bee3ca4aa646134a24374f3c19ad9454", size = 11070681, upload-time = "2026-02-12T23:08:55.43Z" },
133
+ { url = "https://files.pythonhosted.org/packages/9a/67/d640ac76069f64cdea59dba02af2e00b1fa30e2103c7f8d049c0cff4cafd/ruff-0.15.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:68138a4ba184b4691ccdc39f7795c66b3c68160c586519e7e8444cf5a53e1b4c", size = 10486401, upload-time = "2026-02-12T23:09:27.927Z" },
134
+ { url = "https://files.pythonhosted.org/packages/65/3d/e1429f64a3ff89297497916b88c32a5cc88eeca7e9c787072d0e7f1d3e1e/ruff-0.15.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:518f9af03bfc33c03bdb4cb63fabc935341bb7f54af500f92ac309ecfbba6330", size = 10197452, upload-time = "2026-02-12T23:09:12.147Z" },
135
+ { url = "https://files.pythonhosted.org/packages/78/83/e2c3bade17dad63bf1e1c2ffaf11490603b760be149e1419b07049b36ef2/ruff-0.15.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:da79f4d6a826caaea95de0237a67e33b81e6ec2e25fc7e1993a4015dffca7c61", size = 10693900, upload-time = "2026-02-12T23:09:34.418Z" },
136
+ { url = "https://files.pythonhosted.org/packages/a1/27/fdc0e11a813e6338e0706e8b39bb7a1d61ea5b36873b351acee7e524a72a/ruff-0.15.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3dd86dccb83cd7d4dcfac303ffc277e6048600dfc22e38158afa208e8bf94a1f", size = 11227302, upload-time = "2026-02-12T23:09:36.536Z" },
137
+ { url = "https://files.pythonhosted.org/packages/f6/58/ac864a75067dcbd3b95be5ab4eb2b601d7fbc3d3d736a27e391a4f92a5c1/ruff-0.15.1-py3-none-win32.whl", hash = "sha256:660975d9cb49b5d5278b12b03bb9951d554543a90b74ed5d366b20e2c57c2098", size = 10462555, upload-time = "2026-02-12T23:09:29.899Z" },
138
+ { url = "https://files.pythonhosted.org/packages/e0/5e/d4ccc8a27ecdb78116feac4935dfc39d1304536f4296168f91ed3ec00cd2/ruff-0.15.1-py3-none-win_amd64.whl", hash = "sha256:c820fef9dd5d4172a6570e5721704a96c6679b80cf7be41659ed439653f62336", size = 11599956, upload-time = "2026-02-12T23:09:01.157Z" },
139
+ { url = "https://files.pythonhosted.org/packages/2a/07/5bda6a85b220c64c65686bc85bd0bbb23b29c62b3a9f9433fa55f17cda93/ruff-0.15.1-py3-none-win_arm64.whl", hash = "sha256:5ff7d5f0f88567850f45081fac8f4ec212be8d0b963e385c3f7d0d2eb4899416", size = 10874604, upload-time = "2026-02-12T23:09:05.515Z" },
140
140
  ]
141
141
 
142
142
  [[package]]
@@ -1,34 +0,0 @@
1
- name: publish
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
- tags:
8
- - 'v*'
9
- # non-main branches are handled by pull_request
10
- pull_request:
11
-
12
- jobs:
13
- build_publish:
14
- name: "Build (and Publish)"
15
- runs-on: docker
16
- container:
17
- image: codeberg.org/margau/buildenv-uv:latest@sha256:eaa6f1c4510e6d5c0c81164a127e281be029d2ed261e060880145c024e890ce4
18
-
19
- steps:
20
- - uses: https://code.forgejo.org/actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
21
- with:
22
- fetch-depth: 0
23
- - name: Build the project
24
- run: uv build
25
- - name: Publish release to pypi
26
- run: uv publish
27
- if: "${{ startsWith(github.ref, 'refs/tags') }}"
28
- env:
29
- UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"
30
- - name: Publish dev version to pypi
31
- run: uv publish
32
- if: "${{ github.ref == 'refs/heads/main' }}"
33
- env:
34
- UV_PUBLISH_TOKEN: "${{ secrets.UV_PUBLISH_TOKEN }}"