Skip to content

Commit

Permalink
Bump python requests version dependency (#1274)
Browse files Browse the repository at this point in the history
This library guarantees compatibility between minor version updates.

Co-authored-by: Levi Blackstone <levi@pulumi.com>
  • Loading branch information
justinvp and lblackstone authored Aug 26, 2020
1 parent f16eae1 commit 9b11336
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Improvements

- Switch Helm v3 logic to use native library. (https://github.com/pulumi/pulumi-kubernetes/pull/1263)
- Bump python requests version dependency. (https://github.com/pulumi/pulumi-kubernetes/pull/1274)

## 2.5.0 (August 26, 2020)

Expand Down
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-kubernetes/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39256,7 +39256,7 @@
"requires": {
"pulumi": "\u003e=2.0.0,\u003c3.0.0",
"pyyaml": "\u003e=5.1,\u003c5.2",
"requests": "\u003e=2.21.0,\u003c2.22.0"
"requests": "\u003e=2.21,\u003c3.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion provider/pkg/gen/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Use the navigation below to see detailed documentation for each of the supported
pkg.Language["python"] = rawMessage(map[string]interface{}{
"requires": map[string]string{
"pulumi": ">=2.0.0,<3.0.0",
"requests": ">=2.21.0,<2.22.0",
"requests": ">=2.21,<3.0",
"pyyaml": ">=5.1,<5.2",
},
"moduleNameOverrides": modToPkg,
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def readme():
'parver>=0.2.1',
'pulumi>=2.0.0,<3.0.0',
'pyyaml>=5.1,<5.2',
'requests>=2.21.0,<2.22.0',
'requests>=2.21,<3.0',
'semver>=2.8.1'
],
zip_safe=False)

0 comments on commit 9b11336

Please sign in to comment.