pulumi-ise 0.3.0a1739252987__py3-none-any.whl → 0.3.0a1739378214__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_ise/_utilities.py +8 -4
- pulumi_ise/pulumi-plugin.json +1 -1
- {pulumi_ise-0.3.0a1739252987.dist-info → pulumi_ise-0.3.0a1739378214.dist-info}/METADATA +1 -1
- {pulumi_ise-0.3.0a1739252987.dist-info → pulumi_ise-0.3.0a1739378214.dist-info}/RECORD +6 -6
- {pulumi_ise-0.3.0a1739252987.dist-info → pulumi_ise-0.3.0a1739378214.dist-info}/WHEEL +0 -0
- {pulumi_ise-0.3.0a1739252987.dist-info → pulumi_ise-0.3.0a1739378214.dist-info}/top_level.txt +0 -0
pulumi_ise/_utilities.py
CHANGED
@@ -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
|
|
pulumi_ise/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_ise/__init__.py,sha256=lIoniHeysJsYu8DofXuCLfAYE9wlO26HcaCZ8XkLNT8,12432
|
2
|
-
pulumi_ise/_utilities.py,sha256
|
2
|
+
pulumi_ise/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
3
3
|
pulumi_ise/provider.py,sha256=Hsk3JqeyK1R8ScoD6jPWleYLmms4jKrPBUCUAV82Be8,9694
|
4
|
-
pulumi_ise/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_ise/pulumi-plugin.json,sha256=K0n-rLwzcGgFTMVi262ZfkgStjBuAObY1yrpR-05YY8,79
|
5
5
|
pulumi_ise/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_ise/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
7
7
|
pulumi_ise/config/__init__.pyi,sha256=tlOr3dPKX4Au2ZhgAqiaBcjddI-d2hp_39yEvDzLnec,1185
|
@@ -113,7 +113,7 @@ pulumi_ise/trustsec/ip_to_sgt_mapping_group.py,sha256=4w_mKxTcV-B-VdinBSoO9moks7
|
|
113
113
|
pulumi_ise/trustsec/security_group.py,sha256=kX6QbVtESGrlTptkdSM_aWvHO7UN_34miMFd2NR3XZQ,13750
|
114
114
|
pulumi_ise/trustsec/security_group_acl.py,sha256=AQSlzS4v_ejN61iUmBj7YFfGllF9t0N4DVTm0Z6Ampo,13973
|
115
115
|
pulumi_ise/trustsec/sxp_domain_filter.py,sha256=KtUA-jgvLJBj9VbeSIQDKkBTDMB1ymocQd9MtQYcXzc,15637
|
116
|
-
pulumi_ise-0.3.
|
117
|
-
pulumi_ise-0.3.
|
118
|
-
pulumi_ise-0.3.
|
119
|
-
pulumi_ise-0.3.
|
116
|
+
pulumi_ise-0.3.0a1739378214.dist-info/METADATA,sha256=neIK6tJNr4G9YdkQkuAV_CXLeyR75djYL2GQR5C0RSs,1479
|
117
|
+
pulumi_ise-0.3.0a1739378214.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
118
|
+
pulumi_ise-0.3.0a1739378214.dist-info/top_level.txt,sha256=oFNRT2ED37ACpG9aXKjxzIS6O-f9vaDcEci2KQl7KO0,11
|
119
|
+
pulumi_ise-0.3.0a1739378214.dist-info/RECORD,,
|
File without changes
|
{pulumi_ise-0.3.0a1739252987.dist-info → pulumi_ise-0.3.0a1739378214.dist-info}/top_level.txt
RENAMED
File without changes
|