Skip to content

Commit

Permalink
Merge pull request kapicorp#1120 from kapicorp/remove-3.9
Browse files Browse the repository at this point in the history
Remove support for Python 3.9
  • Loading branch information
ademariag authored Jan 19, 2024
2 parents ee7cf52 + fa69852 commit 2c6a86c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11']

steps:
- name: Checkout kapitan recursively
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
Expand All @@ -38,7 +37,7 @@ kapitan = 'kapitan.cli:main'
source = "git-tag"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
addict = "^2.4.0"
azure-keyvault-keys = "^4.7.0"
boto3 = "^1.18.17"
Expand Down Expand Up @@ -71,7 +70,7 @@ test = ["docker"]

[tool.black]
line-length = 110
target-version = ['py38']
target-version = ['py310']
exclude = '''
(
/(
Expand Down

0 comments on commit 2c6a86c

Please sign in to comment.