gha-utils 4.4.2__tar.gz → 4.4.3__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.4.2
3
+ Version: 4.4.3
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
@@ -46,14 +46,14 @@ Classifier: Typing :: Typed
46
46
  Requires-Python: >=3.9
47
47
  Description-Content-Type: text/markdown
48
48
  Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
49
- Requires-Dist: boltons~=24.0.0
50
- Requires-Dist: bump-my-version~=0.24.0
49
+ Requires-Dist: boltons>=24.0.0
50
+ Requires-Dist: bump-my-version>=0.21.0
51
51
  Requires-Dist: click-extra~=4.9.0
52
52
  Requires-Dist: packaging~=24.1
53
53
  Requires-Dist: PyDriller~=2.6
54
54
  Requires-Dist: pyproject-metadata~=0.8.0
55
55
  Requires-Dist: tomli~=2.0.1; python_version < "3.11"
56
- Requires-Dist: wcmatch~=8.5.2
56
+ Requires-Dist: wcmatch>=8.5
57
57
 
58
58
  # `gha-utils` CLI + reusable workflows
59
59
 
@@ -17,4 +17,4 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = "4.4.2"
20
+ __version__ = "4.4.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gha-utils
3
- Version: 4.4.2
3
+ Version: 4.4.3
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
@@ -46,14 +46,14 @@ Classifier: Typing :: Typed
46
46
  Requires-Python: >=3.9
47
47
  Description-Content-Type: text/markdown
48
48
  Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
49
- Requires-Dist: boltons~=24.0.0
50
- Requires-Dist: bump-my-version~=0.24.0
49
+ Requires-Dist: boltons>=24.0.0
50
+ Requires-Dist: bump-my-version>=0.21.0
51
51
  Requires-Dist: click-extra~=4.9.0
52
52
  Requires-Dist: packaging~=24.1
53
53
  Requires-Dist: PyDriller~=2.6
54
54
  Requires-Dist: pyproject-metadata~=0.8.0
55
55
  Requires-Dist: tomli~=2.0.1; python_version < "3.11"
56
- Requires-Dist: wcmatch~=8.5.2
56
+ Requires-Dist: wcmatch>=8.5
57
57
 
58
58
  # `gha-utils` CLI + reusable workflows
59
59
 
@@ -1,10 +1,10 @@
1
- boltons~=24.0.0
2
- bump-my-version~=0.24.0
1
+ boltons>=24.0.0
2
+ bump-my-version>=0.21.0
3
3
  click-extra~=4.9.0
4
4
  packaging~=24.1
5
5
  PyDriller~=2.6
6
6
  pyproject-metadata~=0.8.0
7
- wcmatch~=8.5.2
7
+ wcmatch>=8.5
8
8
 
9
9
  [:python_version < "3.11"]
10
10
  backports.strenum~=1.3.1
@@ -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.2"
4
+ version = "4.4.3"
5
5
  # Python versions and their status: https://devguide.python.org/versions/
6
6
  requires-python = ">= 3.9"
7
7
  description = "⚙️ CLI helpers for GitHub Actions + reuseable workflows"
@@ -69,14 +69,19 @@ classifiers = [
69
69
  ]
70
70
  dependencies = [
71
71
  "backports.strenum ~= 1.3.1 ; python_version < '3.11'",
72
- "boltons ~= 24.0.0",
73
- "bump-my-version ~= 0.24.0",
72
+ # Loose version to let click-extra set its own stricter dependency.
73
+ "boltons >= 24.0.0",
74
+ # Dependency version is more relaxed on bump-my-version to prevent chicken and egg
75
+ # while releasing gha-utils itself.
76
+ # v0.21.0 is the first to rely on wcmatch library.
77
+ "bump-my-version >= 0.21.0",
74
78
  "click-extra ~= 4.9.0",
75
79
  "packaging ~= 24.1",
76
80
  "PyDriller ~= 2.6",
77
81
  "pyproject-metadata ~= 0.8.0",
78
82
  "tomli ~= 2.0.1 ; python_version < '3.11'",
79
- "wcmatch ~= 8.5.2",
83
+ # Loose version to let click-extra set its own stricter dependency.
84
+ "wcmatch >= 8.5",
80
85
  ]
81
86
 
82
87
  [project.urls]
@@ -101,7 +106,7 @@ warn_unreachable = true
101
106
  pretty = true
102
107
 
103
108
  [tool.bumpversion]
104
- current_version = "4.4.2"
109
+ current_version = "4.4.3"
105
110
  allow_dirty = true
106
111
  ignore_missing_files = true
107
112
 
File without changes
File without changes
File without changes
File without changes