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.
- {gha_utils-4.8.3 → gha_utils-4.9.0}/PKG-INFO +1 -1
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/__init__.py +1 -1
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/metadata.py +5 -3
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/PKG-INFO +1 -1
- {gha_utils-4.8.3 → gha_utils-4.9.0}/pyproject.toml +4 -8
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/__main__.py +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/changelog.py +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/cli.py +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/mailmap.py +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils/py.typed +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/SOURCES.txt +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/dependency_links.txt +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/entry_points.txt +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/requires.txt +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/gha_utils.egg-info/top_level.txt +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/readme.md +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/setup.cfg +0 -0
- {gha_utils-4.8.3 → gha_utils-4.9.0}/tests/test_changelog.py +0 -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,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.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.
|
|
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
|
|
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
|