Fix: do not over-specify SDK dependencies (#271)

Re: https://github.com/pulumi/ci-mgmt/issues/1091
This commit is contained in:
Anton Tayanovskyy
2024-10-02 14:03:54 -04:00
committed by GitHub
parent 30a26f61e4
commit 9d3d0712f2
3 changed files with 1 additions and 13 deletions

View File

@@ -42,15 +42,9 @@
"gradleTest": ""
},
"nodejs": {
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
},
"respectSchemaVersion": true
},
"python": {
"requires": {
"pulumi": ">=3.0.0,<4.0.0"
},
"respectSchemaVersion": true,
"pyproject": {
"enabled": true

View File

@@ -103,18 +103,12 @@ func NewBuildxProvider() provider.Provider {
},
"nodejs": tsgen.NodePackageInfo{
RespectSchemaVersion: true,
Dependencies: map[string]string{
"@pulumi/pulumi": "^3.0.0",
},
},
"python": pygen.PackageInfo{
RespectSchemaVersion: true,
PyProject: struct {
Enabled bool `json:"enabled,omitempty"`
}{Enabled: true},
Requires: map[string]string{
"pulumi": ">=3.0.0,<4.0.0",
},
},
},
},