gha-utils 4.1.1__tar.gz → 4.1.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.
- {gha_utils-4.1.1 → gha_utils-4.1.3}/PKG-INFO +1 -1
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/__init__.py +1 -1
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/metadata.py +2 -2
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/PKG-INFO +1 -1
- {gha_utils-4.1.1 → gha_utils-4.1.3}/pyproject.toml +2 -2
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/__main__.py +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/changelog.py +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/cli.py +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/mailmap.py +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils/py.typed +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/SOURCES.txt +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/dependency_links.txt +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/entry_points.txt +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/requires.txt +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/gha_utils.egg-info/top_level.txt +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/readme.md +0 -0
- {gha_utils-4.1.1 → gha_utils-4.1.3}/setup.cfg +0 -0
|
@@ -686,8 +686,8 @@ class Metadata:
|
|
|
686
686
|
spec_list = []
|
|
687
687
|
for spec in self.pyproject.requires_python:
|
|
688
688
|
if spec.operator in (">=", ">"):
|
|
689
|
-
|
|
690
|
-
new_spec = f"{spec.operator}{
|
|
689
|
+
release = Version(spec.version).release
|
|
690
|
+
new_spec = f"{spec.operator}{release[0]}.{release[1]}"
|
|
691
691
|
else:
|
|
692
692
|
new_spec = str(spec)
|
|
693
693
|
spec_list.append(new_spec)
|
|
@@ -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.1.
|
|
4
|
+
version = "4.1.3"
|
|
5
5
|
# Python versions and their status: https://devguide.python.org/versions/
|
|
6
6
|
# XXX 3.8 is not enough and we need to bump requirements to 3.8.6 because of:
|
|
7
7
|
# https://github.com/clbarnes/backports.strenum/issues/1
|
|
@@ -95,7 +95,7 @@ gha-utils = "gha_utils.__main__:main"
|
|
|
95
95
|
include = ["gha_utils"]
|
|
96
96
|
|
|
97
97
|
[tool.bumpversion]
|
|
98
|
-
current_version = "4.1.
|
|
98
|
+
current_version = "4.1.3"
|
|
99
99
|
allow_dirty = true
|
|
100
100
|
ignore_missing_files = true
|
|
101
101
|
|
|
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
|