From 20aec36c8a88924caea27fefcdfdbad5a0028b3a Mon Sep 17 00:00:00 2001 From: Kat Morgan Date: Mon, 18 Nov 2024 05:45:09 +0000 Subject: [PATCH] nit --- docs/developer_guide/pulumi_python.md | 4 ++-- docs/developer_guide/roadmaps/aws/README.md | 2 +- docs/developer_guide/roadmaps/aws/developer_guide.md | 2 +- docs/developer_guide/roadmaps/aws/eks_donor_template.md | 2 +- mypy.ini | 2 +- pyproject.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/developer_guide/pulumi_python.md b/docs/developer_guide/pulumi_python.md index a315236..f05ee53 100644 --- a/docs/developer_guide/pulumi_python.md +++ b/docs/developer_guide/pulumi_python.md @@ -60,7 +60,7 @@ Pulumi allows developers to define and manage cloud infrastructure using familia ### Project Setup 1. **Install Pulumi CLI**: [Download Pulumi](https://www.pulumi.com/docs/get-started/install/). -2. **Install Python**: Ensure you have Python 3.8 or higher. +2. **Install Python**: Ensure you have Python 3.10 or higher. 3. **Install Poetry**: [Install Poetry](https://python-poetry.org/docs/#installation). 4. **Initialize a New Pulumi Project**: @@ -498,7 +498,7 @@ class BucketConfigModel(BaseModel): "include": ["**/*.py"], "exclude": ["**/__pycache__/**"], "reportMissingImports": true, - "pythonVersion": "3.8", + "pythonVersion": "3.10", "typeCheckingMode": "strict" } ``` diff --git a/docs/developer_guide/roadmaps/aws/README.md b/docs/developer_guide/roadmaps/aws/README.md index cf817fe..a340ca8 100644 --- a/docs/developer_guide/roadmaps/aws/README.md +++ b/docs/developer_guide/roadmaps/aws/README.md @@ -21,7 +21,7 @@ The AWS module for Konductor provides a comprehensive framework for implementing ### Prerequisites -- Python 3.8+ +- Python 3.10+ - Poetry for dependency management - Pulumi CLI - AWS CLI configured with appropriate credentials diff --git a/docs/developer_guide/roadmaps/aws/developer_guide.md b/docs/developer_guide/roadmaps/aws/developer_guide.md index c0abd62..0563527 100644 --- a/docs/developer_guide/roadmaps/aws/developer_guide.md +++ b/docs/developer_guide/roadmaps/aws/developer_guide.md @@ -21,7 +21,7 @@ The AWS module for Konductor provides a comprehensive framework for implementing ### Prerequisites -- Python 3.8+ +- Python 3.10+ - Poetry for dependency management - Pulumi CLI - AWS CLI configured with appropriate credentials diff --git a/docs/developer_guide/roadmaps/aws/eks_donor_template.md b/docs/developer_guide/roadmaps/aws/eks_donor_template.md index ae806e9..cee3a46 100644 --- a/docs/developer_guide/roadmaps/aws/eks_donor_template.md +++ b/docs/developer_guide/roadmaps/aws/eks_donor_template.md @@ -76,7 +76,7 @@ class EksClusterConfig(TypedDict): ## Prerequisites -- Python 3.8+ +- Python 3.10+ - Pulumi CLI - AWS CLI configured - Required permissions: diff --git a/mypy.ini b/mypy.ini index d0a1d65..e9055b5 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.9 +python_version = 3.10 disallow_untyped_calls = True disallow_untyped_defs = True check_untyped_defs = True diff --git a/pyproject.toml b/pyproject.toml index 2bdf732..cdb7d71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.8" +python = "^3.10" pulumi = "^3.0.0" pulumi-aws = "^6.0.0" pulumi-kubernetes = "^4.0.0"