pulumi-mailgun 3.6.0a1739253333__py3-none-any.whl → 3.6.0a1739378157__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -89,12 +89,16 @@ def _get_semver_version():
89
89
  elif pep440_version.pre_tag == 'rc':
90
90
  prerelease = f"rc.{pep440_version.pre}"
91
91
  elif pep440_version.dev is not None:
92
+ # PEP440 has explicit support for dev builds, while semver encodes them as "prerelease" versions. To bridge
93
+ # between the two, we convert our dev build version into a prerelease tag. This matches what all of our other
94
+ # packages do when constructing their own semver string.
92
95
  prerelease = f"dev.{pep440_version.dev}"
96
+ elif pep440_version.local is not None:
97
+ # PEP440 only allows a small set of prerelease tags, so when converting an arbitrary prerelease,
98
+ # PypiVersion in /pkg/codegen/python/utilities.go converts it to a local version. Therefore, we need to
99
+ # do the reverse conversion here and set the local version as the prerelease tag.
100
+ prerelease = pep440_version.local
93
101
 
94
- # The only significant difference between PEP440 and semver as it pertains to us is that PEP440 has explicit support
95
- # for dev builds, while semver encodes them as "prerelease" versions. In order to bridge between the two, we convert
96
- # our dev build version into a prerelease tag. This matches what all of our other packages do when constructing
97
- # their own semver string.
98
102
  return SemverVersion(major=major, minor=minor, patch=patch, prerelease=prerelease)
99
103
 
100
104
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "mailgun",
4
- "version": "3.6.0-alpha.1739253333"
4
+ "version": "3.6.0-alpha.1739378157"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_mailgun
3
- Version: 3.6.0a1739253333
3
+ Version: 3.6.0a1739378157
4
4
  Summary: A Pulumi package for creating and managing Mailgun resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,19 +1,19 @@
1
1
  pulumi_mailgun/__init__.py,sha256=Ytyt-ig7Of_38ZU1ABf5ae67MG-VwOmEfBHw4-WQOPo,1461
2
2
  pulumi_mailgun/_inputs.py,sha256=oewCZz8Lo93sZF-XRnuFHeyvJn4w3YQ07krIakb8E9A,13617
3
- pulumi_mailgun/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
3
+ pulumi_mailgun/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
4
  pulumi_mailgun/domain.py,sha256=TSn-23-uhI6B4Zsdjyx6NYjjlYI7FzpV_GcB_w9WYxA,40639
5
5
  pulumi_mailgun/domain_credential.py,sha256=x5sNVp1rWYWmP6EQbEdMm2zIXETAfFOzNcDDTeAYwxM,13538
6
6
  pulumi_mailgun/get_domain.py,sha256=O-ZIwZNv_U7KdbQWbVMuTbVnb_K1UzFYITGPYKVZgOE,16479
7
7
  pulumi_mailgun/outputs.py,sha256=_yAV9zhdbelUXcthSgi0wqNRA1FMw0P2sTJ0elHyZv0,16285
8
8
  pulumi_mailgun/provider.py,sha256=NYMRe1ZvSadR289jSIMWFE2Av1Px6Eh1WNB1YmBrZhU,4346
9
- pulumi_mailgun/pulumi-plugin.json,sha256=EA6MNfh1Ub2bLF8zgpR9E_AXY-2_VpM4mMMq871bt1I,83
9
+ pulumi_mailgun/pulumi-plugin.json,sha256=UHzlCoxD1lLcYzIBfARP0R-YNzI1EU56Pe6pPeDogIc,83
10
10
  pulumi_mailgun/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  pulumi_mailgun/route.py,sha256=b5k5ESAMr8VrqBSFIh3eaMboB08ThagOybaNOMItNAc,14328
12
12
  pulumi_mailgun/webhook.py,sha256=ZfaziPJJFzb1OT1B3NLpqbXoVBVSSMRBzAZd2-Y6Ggk,12496
13
13
  pulumi_mailgun/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
14
14
  pulumi_mailgun/config/__init__.pyi,sha256=yVlVZwiwDCVbo-pD12UK619Y9Am96Xa0gQgOH4vMUhE,542
15
15
  pulumi_mailgun/config/vars.py,sha256=kUdLUx0w1seyzQ7k-VNXNfZNi6wbKYar4aQ-SSwQd9o,711
16
- pulumi_mailgun-3.6.0a1739253333.dist-info/METADATA,sha256=q9r27hGqIXbm6hrUdBHuVTOFUG_SDivI_2Z-nIdFsqA,2639
17
- pulumi_mailgun-3.6.0a1739253333.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
18
- pulumi_mailgun-3.6.0a1739253333.dist-info/top_level.txt,sha256=ux3X8exe9YrOj_SlT4i0pHbKCRsCEFnr4MM3FGuPBmo,15
19
- pulumi_mailgun-3.6.0a1739253333.dist-info/RECORD,,
16
+ pulumi_mailgun-3.6.0a1739378157.dist-info/METADATA,sha256=0k5GGVV-D5qrMuVqmeDyW21eKi-yYwNVvLoNGifEcqc,2639
17
+ pulumi_mailgun-3.6.0a1739378157.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
18
+ pulumi_mailgun-3.6.0a1739378157.dist-info/top_level.txt,sha256=ux3X8exe9YrOj_SlT4i0pHbKCRsCEFnr4MM3FGuPBmo,15
19
+ pulumi_mailgun-3.6.0a1739378157.dist-info/RECORD,,