pulumi-dnsimple 4.3.0a1739338595__py3-none-any.whl → 4.3.0a1739377985__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-dnsimple might be problematic. Click here for more details.

@@ -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": "dnsimple",
4
- "version": "4.3.0-alpha.1739338595"
4
+ "version": "4.3.0-alpha.1739377985"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_dnsimple
3
- Version: 4.3.0a1739338595
3
+ Version: 4.3.0a1739377985
4
4
  Summary: A Pulumi package for creating and managing dnsimple cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,7 +1,7 @@
1
1
  pulumi_dnsimple/__init__.py,sha256=5THvG1YjSUU5KBftlF5jgDOA07JkYKBJyg_ws03qkjY,2593
2
2
  pulumi_dnsimple/_enums.py,sha256=PTXnVS2NWGUKOwTKZPIBt0nCr19POrh2TLEzPCV3n44,583
3
3
  pulumi_dnsimple/_inputs.py,sha256=IkTFXkHl1T3jk1Xus2BJOl5Xq4h1B-mCJhOQNjE6iiM,14405
4
- pulumi_dnsimple/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
4
+ pulumi_dnsimple/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
5
  pulumi_dnsimple/contact.py,sha256=ZVxxM0j2j5H96T73rcOLqmV85Nomwtk40mUeUjheLW0,39314
6
6
  pulumi_dnsimple/domain.py,sha256=87UarNHl9ZEjfRaq1UMULIwMy2LCYpas_ihyOIAUkaU,15514
7
7
  pulumi_dnsimple/domain_delegation.py,sha256=GN_cVbejfuf8Jaho2hbD0gSdmbb-LtyS9SqMe4jzZ-w,9441
@@ -13,7 +13,7 @@ pulumi_dnsimple/get_zone.py,sha256=unnBYI9jPDGu4EmUPk8_nOgU3eNWQpj_cNLvrcqHj40,4
13
13
  pulumi_dnsimple/lets_encrypt_certificate.py,sha256=t6lG6ymX55W8_mHauVjN8h4JBnyFgYplrdFeMIZT-ds,22712
14
14
  pulumi_dnsimple/outputs.py,sha256=WQJr8WAZA0kabAv5SZqfQ22_yDlNgTgsY_JqODdhFQU,11428
15
15
  pulumi_dnsimple/provider.py,sha256=IUbSMzYMY3qE-jPE_MImFHpjL88GzpDxJoV-Tq7WqdI,8849
16
- pulumi_dnsimple/pulumi-plugin.json,sha256=_Cv9vtgDavI4HEsXq6FXNIcX7ml2uLWUdGddQy8pHOQ,84
16
+ pulumi_dnsimple/pulumi-plugin.json,sha256=95i_oSHO_pibMoCeeXX0jUM41k17np0aw4Xsg7Kk95Q,84
17
17
  pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  pulumi_dnsimple/registered_domain.py,sha256=wSMO_UjkGWfemJT1ijqoLEmQ8BTxlw3W37G1ETXJoYg,41154
19
19
  pulumi_dnsimple/zone.py,sha256=FaVk3D3KFvL2tJloZFwhMBr92-TdE4q8yh4dtwWVHIQ,14934
@@ -21,7 +21,7 @@ pulumi_dnsimple/zone_record.py,sha256=Nfd6YFrEdXk4Olh6QTLAINmIvjI1rN7sRbY7NgQII7
21
21
  pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
22
22
  pulumi_dnsimple/config/__init__.pyi,sha256=nr72rj7tw-uEjoYAS_U6YILSKKP5B3ZOPxiBxgEiTXc,913
23
23
  pulumi_dnsimple/config/vars.py,sha256=Ahw2dN9d0xDfr9mNSP416QYH8jmqFrC7Io2VCmWy-Sw,1503
24
- pulumi_dnsimple-4.3.0a1739338595.dist-info/METADATA,sha256=-yyPiMxPcBGFkX6n0GUJPhSm-_yztep7gFfkP-KGzDE,2928
25
- pulumi_dnsimple-4.3.0a1739338595.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
26
- pulumi_dnsimple-4.3.0a1739338595.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
27
- pulumi_dnsimple-4.3.0a1739338595.dist-info/RECORD,,
24
+ pulumi_dnsimple-4.3.0a1739377985.dist-info/METADATA,sha256=PTa6tMBuQsqvGSu1k7rjlDyThLXFB9OvBcCnBv9-8H0,2928
25
+ pulumi_dnsimple-4.3.0a1739377985.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
26
+ pulumi_dnsimple-4.3.0a1739377985.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
27
+ pulumi_dnsimple-4.3.0a1739377985.dist-info/RECORD,,