Skip to content

Commit

Permalink
Expand allowed Python pyyaml dependency versions (#1435)
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Jan 20, 2021
1 parent dd2d1ce commit e89ad5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## HEAD (Unreleased)

- Expand allowed Python pyyaml dependency versions (https://github.com/pulumi/pulumi-kubernetes/pull/1435)

## 2.7.6 (January 13, 2021)

- Upgrade helm and k8s deps (https://github.com/pulumi/pulumi-kubernetes/pull/1414)
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 @@ -40835,7 +40835,7 @@
"readme": "The Kubernetes provider package offers support for all Kubernetes resources and their properties.\nResources are exposed as types from modules based on Kubernetes API groups such as 'apps', 'core',\n'rbac', and 'storage', among many others. Additionally, support for deploying Helm charts ('helm')\nand YAML files ('yaml') is available in this package. Using this package allows you to\nprogrammatically declare instances of any Kubernetes resources and any supported resource version\nusing infrastructure as code, which Pulumi then uses to drive the Kubernetes API.\n\nIf this is your first time using this package, these two resources may be helpful:\n\n* [Kubernetes Getting Started Guide](https://www.pulumi.com/docs/quickstart/kubernetes/): Get up and running quickly.\n* [Kubernetes Pulumi Setup Documentation](https://www.pulumi.com/docs/quickstart/kubernetes/configure/): How to configure Pulumi\n for use with your Kubernetes cluster.\n",
"requires": {
"pulumi": "\u003e=2.15.0,\u003c3.0.0",
"pyyaml": "\u003e=5.3.1,\u003c5.4",
"pyyaml": "\u003e=5.3.1,\u003c6.0",
"requests": "\u003e=2.21,\u003c3.0"
},
"usesIOClasses": true
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 @@ -302,7 +302,7 @@ Use the navigation below to see detailed documentation for each of the supported
"requires": map[string]string{
"pulumi": ">=2.15.0,<3.0.0",
"requests": ">=2.21,<3.0",
"pyyaml": ">=5.3.1,<5.4",
"pyyaml": ">=5.3.1,<6.0",
},
"moduleNameOverrides": modToPkg,
"compatibility": kubernetes20,
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def readme():
install_requires=[
'parver>=0.2.1',
'pulumi>=2.15.0,<3.0.0',
'pyyaml>=5.3.1,<5.4',
'pyyaml>=5.3.1,<6.0',
'requests>=2.21,<3.0',
'semver>=2.8.1'
],
Expand Down

0 comments on commit e89ad5e

Please sign in to comment.