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": "" "gradleTest": ""
}, },
"nodejs": { "nodejs": {
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
},
"respectSchemaVersion": true "respectSchemaVersion": true
}, },
"python": { "python": {
"requires": {
"pulumi": ">=3.0.0,<4.0.0"
},
"respectSchemaVersion": true, "respectSchemaVersion": true,
"pyproject": { "pyproject": {
"enabled": true "enabled": true

View File

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

View File

@@ -14,7 +14,7 @@
"build": "tsc" "build": "tsc"
}, },
"dependencies": { "dependencies": {
"@pulumi/pulumi": "^3.0.0" "@pulumi/pulumi": "^3.133.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^14", "@types/node": "^14",