Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Nov 18, 2024
1 parent 8166e9b commit 20aec36
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/developer_guide/pulumi_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:

Expand Down Expand Up @@ -498,7 +498,7 @@ class BucketConfigModel(BaseModel):
"include": ["**/*.py"],
"exclude": ["**/__pycache__/**"],
"reportMissingImports": true,
"pythonVersion": "3.8",
"pythonVersion": "3.10",
"typeCheckingMode": "strict"
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer_guide/roadmaps/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/developer_guide/roadmaps/aws/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/developer_guide/roadmaps/aws/eks_donor_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class EksClusterConfig(TypedDict):

## Prerequisites

- Python 3.8+
- Python 3.10+
- Pulumi CLI
- AWS CLI configured
- Required permissions:
Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 20aec36

Please sign in to comment.