gha-utils 4.11.1__tar.gz → 4.12.0__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.
Potentially problematic release.
This version of gha-utils might be problematic. Click here for more details.
- {gha_utils-4.11.1 → gha_utils-4.12.0}/PKG-INFO +2 -2
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/__init__.py +1 -1
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/PKG-INFO +2 -2
- {gha_utils-4.11.1 → gha_utils-4.12.0}/pyproject.toml +2 -2
- {gha_utils-4.11.1 → gha_utils-4.12.0}/readme.md +1 -1
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/__main__.py +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/changelog.py +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/cli.py +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/mailmap.py +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/metadata.py +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils/py.typed +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/SOURCES.txt +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/dependency_links.txt +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/entry_points.txt +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/requires.txt +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/gha_utils.egg-info/top_level.txt +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/setup.cfg +0 -0
- {gha_utils-4.11.1 → gha_utils-4.12.0}/tests/test_changelog.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: gha-utils
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.12.0
|
|
4
4
|
Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
|
|
5
5
|
Author-email: Kevin Deldycke <kevin@deldycke.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/kdeldycke/workflows
|
|
@@ -300,7 +300,7 @@ So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/
|
|
|
300
300
|
|
|
301
301
|
1. Extracts project metadata from `pyproject.toml`
|
|
302
302
|
1. Generates a build matrix of all commits / os / arch / CLI entry points
|
|
303
|
-
1. Build Python
|
|
303
|
+
1. Build Python wheels with `uv`
|
|
304
304
|
1. Compile binaries of all CLI with Nuitka
|
|
305
305
|
1. Tag the release commit in Git
|
|
306
306
|
1. Publish new version to PyPi
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: gha-utils
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.12.0
|
|
4
4
|
Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
|
|
5
5
|
Author-email: Kevin Deldycke <kevin@deldycke.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/kdeldycke/workflows
|
|
@@ -300,7 +300,7 @@ So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/
|
|
|
300
300
|
|
|
301
301
|
1. Extracts project metadata from `pyproject.toml`
|
|
302
302
|
1. Generates a build matrix of all commits / os / arch / CLI entry points
|
|
303
|
-
1. Build Python
|
|
303
|
+
1. Build Python wheels with `uv`
|
|
304
304
|
1. Compile binaries of all CLI with Nuitka
|
|
305
305
|
1. Tag the release commit in Git
|
|
306
306
|
1. Publish new version to PyPi
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
|
|
3
3
|
name = "gha-utils"
|
|
4
|
-
version = "4.
|
|
4
|
+
version = "4.12.0"
|
|
5
5
|
# Python versions and their status: https://devguide.python.org/versions/
|
|
6
6
|
requires-python = ">= 3.10"
|
|
7
7
|
description = "⚙️ CLI helpers for GitHub Actions + reuseable workflows"
|
|
@@ -132,7 +132,7 @@ addopts = [
|
|
|
132
132
|
xfail_strict = true
|
|
133
133
|
|
|
134
134
|
[tool.bumpversion]
|
|
135
|
-
current_version = "4.
|
|
135
|
+
current_version = "4.12.0"
|
|
136
136
|
allow_dirty = true
|
|
137
137
|
ignore_missing_files = true
|
|
138
138
|
|
|
@@ -236,7 +236,7 @@ So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/
|
|
|
236
236
|
|
|
237
237
|
1. Extracts project metadata from `pyproject.toml`
|
|
238
238
|
1. Generates a build matrix of all commits / os / arch / CLI entry points
|
|
239
|
-
1. Build Python
|
|
239
|
+
1. Build Python wheels with `uv`
|
|
240
240
|
1. Compile binaries of all CLI with Nuitka
|
|
241
241
|
1. Tag the release commit in Git
|
|
242
242
|
1. Publish new version to PyPi
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|