autopub 1.0.0a27__tar.gz → 1.0.0a29__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {autopub-1.0.0a27 → autopub-1.0.0a29}/PKG-INFO +1 -1
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/__init__.py +5 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/cli/__init__.py +1 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/pyproject.toml +2 -2
- {autopub-1.0.0a27 → autopub-1.0.0a29}/LICENSE +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/exceptions.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugin_loader.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/__init__.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/bump_version.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/git.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/pdm.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/poetry.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/update_changelog.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/plugins/uv.py +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/py.typed +0 -0
- {autopub-1.0.0a27 → autopub-1.0.0a29}/autopub/types.py +0 -0
@@ -94,6 +94,7 @@ class Autopub:
|
|
94
94
|
all_plugins = default_plugins + additional_plugins
|
95
95
|
|
96
96
|
plugins = load_plugins(all_plugins)
|
97
|
+
print("plugins", plugins)
|
97
98
|
|
98
99
|
self.plugins += [plugin_class() for plugin_class in plugins]
|
99
100
|
|
@@ -140,8 +141,12 @@ class Autopub:
|
|
140
141
|
self._write_artifact(release_info)
|
141
142
|
|
142
143
|
def publish(self, repository: str | None = None) -> None:
|
144
|
+
print("🛺 publishing")
|
143
145
|
release_info = self.release_info
|
144
146
|
|
147
|
+
print("release info", release_info)
|
148
|
+
print("plugins", self.plugins)
|
149
|
+
|
145
150
|
for plugin in self.plugins:
|
146
151
|
# TODO: maybe pass release info to publish method?
|
147
152
|
if isinstance(plugin, AutopubPackageManagerPlugin):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
requires-python = ">=3.9.0,<4.0"
|
3
|
-
version = "1.0.0-alpha.
|
3
|
+
version = "1.0.0-alpha.29"
|
4
4
|
name = "autopub"
|
5
5
|
description = "Automatic package release upon pull request merge"
|
6
6
|
authors = [
|
@@ -25,7 +25,7 @@ classifiers = [
|
|
25
25
|
repository = "https://github.com/autopub/autopub"
|
26
26
|
include = ["autopub/py.typed"]
|
27
27
|
name = "autopub"
|
28
|
-
version = "1.0.0-alpha.
|
28
|
+
version = "1.0.0-alpha.29"
|
29
29
|
description = "Automatic package release upon pull request merge"
|
30
30
|
authors = [
|
31
31
|
"Justin Mayer <entroP@gmail.com>",
|
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
|