Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand allowed Python pyyaml dependency versions #1435

Merged
merged 1 commit into from
Jan 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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