gha-utils 4.8.3__tar.gz → 4.9.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gha-utils
3
- Version: 4.8.3
3
+ Version: 4.9.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
@@ -17,4 +17,4 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = "4.8.3"
20
+ __version__ = "4.9.0"
@@ -996,14 +996,16 @@ class Metadata:
996
996
  # https://snarky.ca/webassembly-and-its-platform-targets/
997
997
  matrix: dict[str, list[Any]] = {
998
998
  "entry_point": [],
999
- # Run the compilation only the latest supported version of each OS.
999
+ # Run the compilation only on the latest supported version of each OS.
1000
1000
  # The exception is macOS, as macos-15 is arm64 and macos-13 is x64, so we
1001
1001
  # need both to target the two architectures.
1002
+ # XXX In the future arm64 versions of Ubuntu and Windows might be supported:
1003
+ # https://github.com/actions/runner-images/issues/10820
1002
1004
  "os": [
1003
- "ubuntu-24.04",
1005
+ "ubuntu-24.04", # x64
1004
1006
  "macos-15", # arm64
1005
1007
  "macos-13", # x64
1006
- "windows-2022",
1008
+ "windows-2022", # x64
1007
1009
  ],
1008
1010
  # Extra parameters.
1009
1011
  "include": [],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gha-utils
3
- Version: 4.8.3
3
+ Version: 4.9.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
@@ -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.8.3"
4
+ version = "4.9.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"
@@ -121,6 +121,8 @@ pretty = true
121
121
  addopts = [
122
122
  "--durations=10",
123
123
  "--cov=gha_utils",
124
+ "--cov-branch",
125
+ "--cov-precision=2",
124
126
  "--cov-report=term",
125
127
  "--cov-report=xml",
126
128
  "--junitxml=junit.xml",
@@ -129,14 +131,8 @@ addopts = [
129
131
  # Make sure tests that are expected to fail do not resurrect and start working all of a sudden.
130
132
  xfail_strict = true
131
133
 
132
- # https://coverage.readthedocs.io/en/latest/config.html
133
- [tool.coverage.run]
134
- branch = true
135
- [tool.coverage.report]
136
- precision = 2
137
-
138
134
  [tool.bumpversion]
139
- current_version = "4.8.3"
135
+ current_version = "4.9.0"
140
136
  allow_dirty = true
141
137
  ignore_missing_files = true
142
138
 
File without changes
File without changes
File without changes
File without changes