gha-utils 4.11.1__py3-none-any.whl → 4.13.0__py3-none-any.whl
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/__init__.py +1 -1
- {gha_utils-4.11.1.dist-info → gha_utils-4.13.0.dist-info}/METADATA +10 -9
- {gha_utils-4.11.1.dist-info → gha_utils-4.13.0.dist-info}/RECORD +6 -6
- {gha_utils-4.11.1.dist-info → gha_utils-4.13.0.dist-info}/WHEEL +0 -0
- {gha_utils-4.11.1.dist-info → gha_utils-4.13.0.dist-info}/entry_points.txt +0 -0
- {gha_utils-4.11.1.dist-info → gha_utils-4.13.0.dist-info}/top_level.txt +0 -0
gha_utils/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: gha-utils
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.13.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
|
|
@@ -48,7 +48,7 @@ Description-Content-Type: text/markdown
|
|
|
48
48
|
Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
|
|
49
49
|
Requires-Dist: boltons>=24.0.0
|
|
50
50
|
Requires-Dist: bump-my-version>=0.21.0
|
|
51
|
-
Requires-Dist: click-extra~=4.
|
|
51
|
+
Requires-Dist: click-extra~=4.12.0
|
|
52
52
|
Requires-Dist: packaging~=24.1
|
|
53
53
|
Requires-Dist: PyDriller~=2.6
|
|
54
54
|
Requires-Dist: pyproject-metadata~=0.9.0
|
|
@@ -59,7 +59,7 @@ Requires-Dist: coverage[toml]~=7.6.0; extra == "test"
|
|
|
59
59
|
Requires-Dist: pytest~=8.3.1; extra == "test"
|
|
60
60
|
Requires-Dist: pytest-cases~=3.8.3; extra == "test"
|
|
61
61
|
Requires-Dist: pytest-cov~=6.0.0; extra == "test"
|
|
62
|
-
Requires-Dist: pytest-github-actions-annotate-failures~=0.
|
|
62
|
+
Requires-Dist: pytest-github-actions-annotate-failures~=0.3.0; extra == "test"
|
|
63
63
|
Requires-Dist: pytest-randomly~=3.16.0; extra == "test"
|
|
64
64
|
|
|
65
65
|
# `gha-utils` CLI + reusable workflows
|
|
@@ -139,7 +139,7 @@ To ease deployment, standalone executables of `gha-utils`'s latest version are a
|
|
|
139
139
|
|
|
140
140
|
| Platform | `x86_64` | `arm64` |
|
|
141
141
|
| ----------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
|
|
142
|
-
| **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) |
|
|
142
|
+
| **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | [Download `gha-utils-linux-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-arm64.bin) |
|
|
143
143
|
| **macOS** | [Download `gha-utils-macos-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-x64.bin) | [Download `gha-utils-macos-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-arm64.bin) |
|
|
144
144
|
| **Windows** | [Download `gha-utils-windows-x64.exe`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-windows-x64.exe) | |
|
|
145
145
|
|
|
@@ -294,18 +294,19 @@ Now re-run your actions and they should be able to update the workflow files in
|
|
|
294
294
|
|
|
295
295
|
It turns out [Release Engineering is a full-time job, and full of edge-cases](https://blog.axo.dev/2023/02/cargo-dist).
|
|
296
296
|
|
|
297
|
-
|
|
297
|
+
Things have improved a lot in the Python ecosystem with `uv`. But there are still a lot of manual steps to do to release.
|
|
298
298
|
|
|
299
|
-
So I made up
|
|
299
|
+
So I made up this [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
|
|
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.
|
|
304
|
-
1.
|
|
303
|
+
1. Builds Python wheels with `uv`
|
|
304
|
+
1. Compiles binaries of all CLI with Nuitka
|
|
305
305
|
1. Tag the release commit in Git
|
|
306
|
+
1. Produces attestations of released artefacts
|
|
306
307
|
1. Publish new version to PyPi
|
|
307
308
|
1. Publish a GitHub release
|
|
308
|
-
1. Attach and rename build artifacts to
|
|
309
|
+
1. Attach and rename build artifacts to the GitHub release
|
|
309
310
|
|
|
310
311
|
## Changelog
|
|
311
312
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
gha_utils/__init__.py,sha256=
|
|
1
|
+
gha_utils/__init__.py,sha256=WbxI_uZlFllefs9Bd1up0y0VjYQilduF-nGHJsRreDE,866
|
|
2
2
|
gha_utils/__main__.py,sha256=Dck9BjpLXmIRS83k0mghAMcYVYiMiFLltQdfRuMSP_Q,1703
|
|
3
3
|
gha_utils/changelog.py,sha256=oahY88A9FRV14f1JSFKIiYrN_TS7Jo3QlljXqJbeuaE,5892
|
|
4
4
|
gha_utils/cli.py,sha256=1sgNwDQS9vL5eTUjFXWQVYxtV6LTLRyo4kMnl4Joqg4,9175
|
|
5
5
|
gha_utils/mailmap.py,sha256=snSQBn1BDZ21783l4yCkQc3RLIxh5X6QCunFRkDj-24,6301
|
|
6
6
|
gha_utils/metadata.py,sha256=jREHEbkwDm4OU4Pw_Q0KMRMbOy93_8Gjnccq3DWHq3s,51540
|
|
7
7
|
gha_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
gha_utils-4.
|
|
9
|
-
gha_utils-4.
|
|
10
|
-
gha_utils-4.
|
|
11
|
-
gha_utils-4.
|
|
12
|
-
gha_utils-4.
|
|
8
|
+
gha_utils-4.13.0.dist-info/METADATA,sha256=_XD8HbHNz81iFDuWv3lBxJf3j4QHirFD2fX61kXONZM,20179
|
|
9
|
+
gha_utils-4.13.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
10
|
+
gha_utils-4.13.0.dist-info/entry_points.txt,sha256=8bJOwQYf9ZqsLhBR6gUCzvwLNI9f8tiiBrJ3AR0EK4o,54
|
|
11
|
+
gha_utils-4.13.0.dist-info/top_level.txt,sha256=C94Blb61YkkyPBwCdM3J_JPDjWH0lnKa5nGZeZ5M6yE,10
|
|
12
|
+
gha_utils-4.13.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|