diff --git a/provider/cmd/pulumi-resource-vsphere/schema.json b/provider/cmd/pulumi-resource-vsphere/schema.json index 73e015e7..8f55a969 100644 --- a/provider/cmd/pulumi-resource-vsphere/schema.json +++ b/provider/cmd/pulumi-resource-vsphere/schema.json @@ -33,7 +33,6 @@ "packageDescription": "A Pulumi package for creating vsphere resources", "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/hashicorp/terraform-provider-vsphere)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-vsphere` repo](https://github.com/pulumi/pulumi-vsphere/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-vsphere` repo](https://github.com/hashicorp/terraform-provider-vsphere/issues).", "dependencies": { - "@pulumi/pulumi": "^3.0.0", "builtin-modules": "3.0.0", "read-package-tree": "^5.2.1", "resolve": "^1.8.1" @@ -46,9 +45,6 @@ "respectSchemaVersion": true }, "python": { - "requires": { - "pulumi": "\u003e=3.0.0,\u003c4.0.0" - }, "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/hashicorp/terraform-provider-vsphere)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-vsphere` repo](https://github.com/pulumi/pulumi-vsphere/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-vsphere` repo](https://github.com/hashicorp/terraform-provider-vsphere/issues).", "compatibility": "tfbridge20", "respectSchemaVersion": true, diff --git a/provider/resources.go b/provider/resources.go index 8e7a092d..f5bcf388 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -96,7 +96,6 @@ func Provider() tfbridge.ProviderInfo { }, JavaScript: &tfbridge.JavaScriptInfo{ Dependencies: map[string]string{ - "@pulumi/pulumi": "^3.0.0", "builtin-modules": "3.0.0", "read-package-tree": "^5.2.1", "resolve": "^1.8.1", @@ -108,9 +107,7 @@ func Provider() tfbridge.ProviderInfo { }, Python: &tfbridge.PythonInfo{ RespectSchemaVersion: true, - Requires: map[string]string{ - "pulumi": ">=3.0.0,<4.0.0", - }, + PyProject: struct{ Enabled bool }{true}, }, diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index 70612aab..7b5d325c 100644 --- a/sdk/nodejs/package.json +++ b/sdk/nodejs/package.json @@ -13,7 +13,7 @@ "build": "tsc" }, "dependencies": { - "@pulumi/pulumi": "^3.0.0", + "@pulumi/pulumi": "^3.42.0", "builtin-modules": "3.0.0", "read-package-tree": "^5.2.1", "resolve": "^1.8.1"