Skip to content

Commit 71fa179

Browse files
fix(ISV-6436): update metadata to support older Python versions
Signed-off-by: Marek Szymutko <mszymutk@redhat.com>
1 parent 531177e commit 71fa179

File tree

3 files changed

+856
-191
lines changed

3 files changed

+856
-191
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.13"]
14+
python-version: ["3.9", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ authors = [
66
{name = "Marek Szymutko", email = "mszymutk@redhat.com"},
77
]
88
readme = "README.md"
9-
requires-python = ">=3.13"
9+
requires-python = ">=3.9"
1010
dependencies = [
11-
"confluent-kafka>=2.12.2",
12-
"pylint>=4.0.4",
11+
"confluent-kafka==2.13.0",
1312
]
1413

1514
[build-system]
@@ -26,12 +25,13 @@ pythonpath = ["src"]
2625

2726
[dependency-groups]
2827
dev = [
29-
"coverage>=7.12.0",
28+
"coverage>=7.10.7",
3029
"mypy>=1.18.2",
31-
"pytest>=9.0.1",
30+
"pylint>=3.3.9",
31+
"pytest>=8.4.2",
3232
"pytest-asyncio>=0.24.0",
3333
"pytest-cov>=7.0.0",
3434
"ruff>=0.14.5",
35-
"tox>=4.32.0",
35+
"tox>=4.30.3",
3636
"types-confluent-kafka>=1.4.0",
3737
]

0 commit comments

Comments
 (0)