pulumi-minio 1.0.0a1739253526__py3-none-any.whl → 1.0.0a1739378216__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.
@@ -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": "minio",
4
- "version": "1.0.0-alpha.1739253526"
4
+ "version": "1.0.0-alpha.1739378216"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_minio
3
- Version: 1.0.0a1739253526
3
+ Version: 1.0.0a1739378216
4
4
  Summary: A Pulumi package for creating and managing minio cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,6 +1,6 @@
1
1
  pulumi_minio/__init__.py,sha256=KattHySvvDbMMf8n-rfkMOVJC8m3LwootXAddHkWSN8,4217
2
2
  pulumi_minio/_inputs.py,sha256=o0p1OLoOLwNXXIJza-VMgT-y-Pvwhvw7d79x0zr40nI,13094
3
- pulumi_minio/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
3
+ pulumi_minio/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
4
  pulumi_minio/get_iam_policy_document.py,sha256=FGv-Cttg4Qs1HODXiNtUx_GhmpXUoz0PYORVFGrwfvA,8840
5
5
  pulumi_minio/iam_group.py,sha256=z4CI7SyESlxf65Xm_Slgw5VMWsCHfp7LkTWxApkCJQI,9385
6
6
  pulumi_minio/iam_group_membership.py,sha256=YmByJ_MIdwKbQ_zC6vCsEWrTxG9IGeOFF0TTTftZ5gI,9408
@@ -15,7 +15,7 @@ pulumi_minio/ilm_policy.py,sha256=LB5mp32mYLkNbIc2iGPOOAkIYlVWUqDHt2JED9zKs-c,76
15
15
  pulumi_minio/kms_key.py,sha256=tVKdDN9sFl72MxNkzTRibwsV6e8Ph139hd_G3mPhGX8,5094
16
16
  pulumi_minio/outputs.py,sha256=pQkz1ph-jWMT7lDSv7wa6decq0EckVy02A5A_chak5A,9559
17
17
  pulumi_minio/provider.py,sha256=yQr69P0-69Nmmrnjt1XNcjjRRl581koPr4FMfRc99W8,17952
18
- pulumi_minio/pulumi-plugin.json,sha256=gN7GA81HCFnefWsQzUdCu1xXGzMICAxnAG70lb7oi48,81
18
+ pulumi_minio/pulumi-plugin.json,sha256=5cMO0rjG5CSja9mJyetImtvHPuwmODPdmrFus9ZDzZY,81
19
19
  pulumi_minio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  pulumi_minio/s3_bucket.py,sha256=qbYcTLD6v8ty4tr9xMGgJgDXsbBtZ4Rp9oHmq8VcP-I,13826
21
21
  pulumi_minio/s3_bucket_notification.py,sha256=v4Wuzr6ZtihBurR449SqCly8bwFjq_YU119lx0TQYKc,7235
@@ -26,7 +26,7 @@ pulumi_minio/s3_object.py,sha256=-7Bk_sqlDT2sl1QB7UmXPhRXVmQseD6PVSkmeUbuYW4,154
26
26
  pulumi_minio/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
27
27
  pulumi_minio/config/__init__.pyi,sha256=7jgyvja-ug1Ckv0BOKWoX--DcFQ1S7nowzRlTZrqXAY,1275
28
28
  pulumi_minio/config/vars.py,sha256=xVpGZzBr7O5W-RiEwH2WEEM2VsSXXvBQy7Z_58EjYG0,2650
29
- pulumi_minio-1.0.0a1739253526.dist-info/METADATA,sha256=zxFJCsPmssdJfXLzUN7j3NfZCvXFdnfaEXU9U1P6QJA,3135
30
- pulumi_minio-1.0.0a1739253526.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
31
- pulumi_minio-1.0.0a1739253526.dist-info/top_level.txt,sha256=DBNF-cWLu2QRu8dDLhwtP1fFZf2HE-q09kgQclmiAa4,13
32
- pulumi_minio-1.0.0a1739253526.dist-info/RECORD,,
29
+ pulumi_minio-1.0.0a1739378216.dist-info/METADATA,sha256=CT__nstlMH7LGY37XZykGdDGfBpiQtM7MeBkLkDH2kk,3135
30
+ pulumi_minio-1.0.0a1739378216.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
31
+ pulumi_minio-1.0.0a1739378216.dist-info/top_level.txt,sha256=DBNF-cWLu2QRu8dDLhwtP1fFZf2HE-q09kgQclmiAa4,13
32
+ pulumi_minio-1.0.0a1739378216.dist-info/RECORD,,