Skip to content

Commit

Permalink
remove python 3.8 support. Add 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mabulgu committed Nov 6, 2024
1 parent 41f21be commit 621d68a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/[email protected]
- name: Install setuptools for Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ repos:
rev: 24.10.0
hooks:
- id: black
language_version: python3
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ description = "Command Line Interface for Strimzi Kafka Operator"
authors = [{ name = "Aykut Bulgu", email = "[email protected]" }]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.8,<3.13"
requires-python = ">=3.9,<3.13"
keywords = ["kafka", "strimzi", "cli", "operator", "kubernetes", "k8s", "openshift", "apache-kafka"]

classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
Expand Down Expand Up @@ -92,7 +92,7 @@ imports = ["kfk"]


[tool.black]
target-version = ["py38", "py39", "py310", "py311", "py312"]
target-version = ["py39", "py310", "py311", "py312", "py313"]
line-length = 88
include = '\.pyi?$'
exclude = '''
Expand Down

0 comments on commit 621d68a

Please sign in to comment.