Skip to content

Commit

Permalink
Bump min py
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Feb 20, 2024
1 parent 3a41910 commit abdae43
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helmcluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
kubernetes-version: ["1.29.2"]
include:
- python-version: '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubecluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
kubernetes-version: ["1.29.2"]
include:
- python-version: '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
kubernetes-version: ["1.29.2"]
include:
- python-version: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exclude = [
per-file-ignores = {}

ignore = [
"E4", # Import formatting
"E4", # Import formatting
"E721", # Comparing types instead of isinstance
"E731", # Assigning lambda expression
"E741", # Ambiguous variable names
Expand All @@ -53,4 +53,4 @@ line-length = 120
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

# Assume Python 3.8
target-version = "py38"
target-version = "py39"

0 comments on commit abdae43

Please sign in to comment.