Skip to content

Commit e37424f

Browse files
committed
Changed python minimum version as 3.9
1 parent 0b27c99 commit e37424f

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ['3.8', '3.9', '3.10', '3.11']
15+
python-version: ['3.9', '3.10', '3.11']
1616

1717
steps:
1818
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Requirements
1414

15-
- Python 3.8 or higher
15+
- Python 3.9 or higher
1616
- Helm 3.x
1717
- pip (Python package installer)
1818

pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "helm-values-manager"
77
version = "0.1.0rc1"
88
description = "A Helm plugin to manage values and secrets across environments"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = { text = "MIT" }
1212
authors = [
1313
{ name = "Ritwik G", email = "[email protected]" },
@@ -20,7 +20,6 @@ classifiers = [
2020
"Development Status :: 4 - Beta",
2121
"Intended Audience :: Developers",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
@@ -35,12 +34,12 @@ dev = [
3534
"flake8>=7.0.0",
3635
"flake8-docstrings>=1.7.0",
3736
"tox>=4.12.1",
38-
"pre-commit>=3.5.0",
37+
"pre-commit>=4.0.0",
3938
]
4039

4140
[tool.black]
4241
line-length = 120
43-
target-version = ['py38']
42+
target-version = ['py39']
4443
include = '\.pyi?$'
4544

4645
[tool.isort]
@@ -69,11 +68,10 @@ extend-ignore = ["E203", "W503"]
6968
[tool.tox]
7069
legacy_tox_ini = """
7170
[tox]
72-
envlist = py38, py39, py310, py311
71+
envlist = py39, py310, py311
7372
7473
[gh-actions]
7574
python =
76-
3.8: py38
7775
3.9: py39
7876
3.10: py310
7977
3.11: py311

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38, py39, py310, py311
2+
envlist = py39, py310, py311
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)