autopub 1.0.0a42__tar.gz → 1.0.0a43__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autopub
3
- Version: 1.0.0a42
3
+ Version: 1.0.0a43
4
4
  Summary: Automatic package release upon pull request merge
5
5
  Home-page: https://github.com/autopub/autopub
6
6
  Author: Justin Mayer
@@ -408,6 +408,7 @@ class GithubPlugin(AutopubPlugin):
408
408
  )
409
409
 
410
410
  for asset in pathlib.Path("dist").glob("*"):
411
+ print("asset", asset, asset.suffix)
411
412
  if asset.suffix in [".tar.gz", ".whl"]:
412
413
  release.upload_asset(str(asset))
413
414
 
@@ -424,4 +425,6 @@ class GithubPlugin(AutopubPlugin):
424
425
  if self.config.create_discussions:
425
426
  discussion_url = self._create_discussion(release_info)
426
427
 
428
+ print("discussion_url", discussion_url)
429
+
427
430
  self._create_release(release_info, discussion_url)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  requires-python = ">=3.9.0,<4.0"
3
- version = "1.0.0-alpha.42"
3
+ version = "1.0.0-alpha.43"
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.42"
28
+ version = "1.0.0-alpha.43"
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