Skip to content

Commit f133b2c

Browse files
committed
Fix syntax errors
1 parent 047e1be commit f133b2c

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -37,4 +37,4 @@ jobs:
3737
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3838
- name: Test with pytest
3939
run: |
40-
pytest test/ -v --disable-warnings
40+
pytest test/ -v

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "chaski-confluent"
77
version = "0.1a6"
88
description = "Chaski Confluent"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.10"
1111
license = { text = "BSD-2-Clause" }
1212
authors = [
1313
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
@@ -25,8 +25,6 @@ classifiers = [
2525
"Natural Language :: English",
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python",
28-
"Programming Language :: Python :: 3.8",
29-
"Programming Language :: Python :: 3.9",
3028
"Programming Language :: Python :: 3.10",
3129
"Programming Language :: Python :: 3.11",
3230
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)