autopub 1.0.0a34__tar.gz → 1.0.0a36__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.0a34
3
+ Version: 1.0.0a36
4
4
  Summary: Automatic package release upon pull request merge
5
5
  Home-page: https://github.com/autopub/autopub
6
6
  Author: Justin Mayer
@@ -34,7 +34,7 @@ class GithubConfig(BaseModel):
34
34
  Here's a preview of the changelog:
35
35
 
36
36
  {changelog}
37
- """,
37
+ """,
38
38
  )
39
39
 
40
40
  comment_template_error: str = textwrap.dedent(
@@ -44,8 +44,7 @@ class GithubConfig(BaseModel):
44
44
  Here's the error:
45
45
 
46
46
  {error}
47
- """,
48
- description="Template for release note validation errors",
47
+ """,
49
48
  )
50
49
 
51
50
  comment_template_missing_release: str = textwrap.dedent("""
@@ -66,7 +65,7 @@ class GithubConfig(BaseModel):
66
65
 
67
66
  Release type can be one of patch, minor or major. We use [semver](https://semver.org/), so make sure to pick the appropriate type. If in doubt feel free to ask :)
68
67
  ```
69
- """)
68
+ """)
70
69
 
71
70
 
72
71
  class GithubPlugin(AutopubPlugin):
@@ -365,8 +364,9 @@ class GithubPlugin(AutopubPlugin):
365
364
  message += f"\n\nReviewers: {', '.join(reviewers)}"
366
365
 
367
366
  if sponsors["sponsors"]:
368
- sponsors = [f"@{sponsor}" for sponsor in sponsors["sponsors"]]
369
- message += f"\n\nThanks to {', '.join(sponsors)}"
367
+ public_sponsors = [f"@{sponsor}" for sponsor in sponsors["sponsors"]]
368
+ message += f"\n\nThanks to {', '.join(public_sponsors)}"
369
+
370
370
  if sponsors["private_sponsors"]:
371
371
  message += f" and the {sponsors['private_sponsors']} private sponsor(s)"
372
372
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  requires-python = ">=3.9.0,<4.0"
3
- version = "1.0.0-alpha.34"
3
+ version = "1.0.0-alpha.36"
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.34"
28
+ version = "1.0.0-alpha.36"
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