From 387e7d2b66628deae202849d0d69d1e224c286dc Mon Sep 17 00:00:00 2001 From: Levi Blackstone Date: Wed, 20 Jan 2021 10:25:06 -0700 Subject: [PATCH] Expand allowed Python pyyaml dependency versions --- CHANGELOG.md | 2 ++ provider/cmd/pulumi-resource-kubernetes/schema.json | 2 +- provider/pkg/gen/schema.go | 2 +- sdk/python/setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d4b86fc41..1dedda4854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/provider/cmd/pulumi-resource-kubernetes/schema.json b/provider/cmd/pulumi-resource-kubernetes/schema.json index 4d8aeb1af9..b04c906563 100644 --- a/provider/cmd/pulumi-resource-kubernetes/schema.json +++ b/provider/cmd/pulumi-resource-kubernetes/schema.json @@ -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 diff --git a/provider/pkg/gen/schema.go b/provider/pkg/gen/schema.go index 99fd132870..89f2b2bb4d 100644 --- a/provider/pkg/gen/schema.go +++ b/provider/pkg/gen/schema.go @@ -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, diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 65f781255d..996b80bf18 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -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' ],