-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove python 3.8 support. Add 3.13 support
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,4 @@ repos: | |
rev: 24.10.0 | ||
hooks: | ||
- id: black | ||
language_version: python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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 = ''' | ||
|