tag-publish 1.2.0.dev1__tar.gz → 1.2.0.dev3__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.
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/PKG-INFO +1 -1
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/pyproject.toml +8 -8
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/__init__.py +8 -4
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/versions.yaml +1 -1
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/LICENSE +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/README.md +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/cli.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/configuration.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/lib/__init__.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/lib/docker.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/lib/oidc.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/new.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/publish.py +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/py.typed +0 -0
- {tag_publish-1.2.0.dev1 → tag_publish-1.2.0.dev3}/tag_publish/schema.json +0 -0
|
@@ -9,24 +9,24 @@ convention = "numpy"
|
|
|
9
9
|
exclude = ["tag_publish/node_modules/**/test"]
|
|
10
10
|
|
|
11
11
|
[tool.poetry.dependencies]
|
|
12
|
-
python = ">=3.
|
|
12
|
+
python = ">=3.10,<4.0"
|
|
13
13
|
requests = "2.32.4"
|
|
14
14
|
twine = "6.1.0"
|
|
15
15
|
PyYAML = "6.0.2"
|
|
16
16
|
id = "1.5.0"
|
|
17
17
|
security-md = "1.0.0"
|
|
18
|
-
applications-download = "1.
|
|
18
|
+
applications-download = "1.3.4"
|
|
19
19
|
jsonschema-validator-new = "0.3.2"
|
|
20
20
|
debian-inspector = "31.1.0"
|
|
21
21
|
multi-repo-automation = "1.7.0"
|
|
22
22
|
githubkit = "0.12.13"
|
|
23
23
|
|
|
24
24
|
[tool.poetry.group.dev.dependencies]
|
|
25
|
-
prospector = { version = "1.
|
|
26
|
-
prospector-profile-duplicated = "1.10.
|
|
27
|
-
prospector-profile-utils = "1.
|
|
28
|
-
types-requests = "2.32.0.
|
|
29
|
-
types-pyyaml = "6.0.12.
|
|
25
|
+
prospector = { version = "1.17.1", extras = ["with_bandit", "with_mypy", "with_pyroma", "with_ruff"] }
|
|
26
|
+
prospector-profile-duplicated = "1.10.5"
|
|
27
|
+
prospector-profile-utils = "1.22.3"
|
|
28
|
+
types-requests = "2.32.0.20250602"
|
|
29
|
+
types-pyyaml = "6.0.12.20250516"
|
|
30
30
|
|
|
31
31
|
[tool.poetry-dynamic-versioning]
|
|
32
32
|
enable = false
|
|
@@ -77,7 +77,7 @@ include = [
|
|
|
77
77
|
]
|
|
78
78
|
requires-python = ">=3.9"
|
|
79
79
|
dependencies = ["requests<3,>=2", "twine<7,>=6", "PyYAML<7,>=6", "id<2,>=1", "security-md<2,>=1", "applications-download<2,>=1", "jsonschema-validator-new<1,>=0", "debian-inspector<32,>=31", "multi-repo-automation<2,>=1", "githubkit<1,>=0"]
|
|
80
|
-
version = "1.2.0.
|
|
80
|
+
version = "1.2.0.dev3"
|
|
81
81
|
|
|
82
82
|
[project.urls]
|
|
83
83
|
repository = "https://github.com/camptocamp/tag-publish"
|
|
@@ -209,13 +209,17 @@ def download_application(application_name: str, binary_filename: Optional[Path]
|
|
|
209
209
|
binary_full_filename = Path.home() / ".local" / "bin" / binary_filename if binary_filename else None
|
|
210
210
|
|
|
211
211
|
if not binary_full_filename.exists() if binary_full_filename else True:
|
|
212
|
-
applications = applications_download.
|
|
212
|
+
applications = applications_download.Applications()
|
|
213
|
+
applications.install("helm/chart-releaser")
|
|
214
|
+
|
|
213
215
|
versions_data = pkgutil.get_data("tag_publish", "versions.yaml")
|
|
216
|
+
|
|
214
217
|
assert versions_data is not None
|
|
215
218
|
versions = yaml.safe_load(versions_data)
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
+
|
|
220
|
+
applications.install(
|
|
221
|
+
application_name,
|
|
222
|
+
versions[application_name],
|
|
219
223
|
)
|
|
220
224
|
|
|
221
225
|
return binary_full_filename
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# https://docs.renovatebot.com/modules/datasource/#github-releases-datasource
|
|
2
|
-
helm/chart-releaser: v1.
|
|
2
|
+
helm/chart-releaser: v1.8.1 # github-releases
|
|
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
|