Skip to content

Commit f66280b

Browse files
committed
Python: Permit installation on Python 3.8
Even if EOL, some projects still provide support for Python 3.8.
1 parent 4675d7b commit f66280b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/python.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,14 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os: ["ubuntu-latest"]
39-
python-version: ["3.10", "3.11", "3.12", "3.13"]
39+
python-version: [
40+
"3.8",
41+
"3.9",
42+
"3.10",
43+
"3.11",
44+
"3.12",
45+
"3.13",
46+
]
4047

4148
env:
4249
OS: ${{ matrix.os }}

cratedb_sqlparse_py/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = { text = "Apache License 2.0" }
1717
authors = [
1818
{ name = "Ivan Sanchez Valencia", email = "[email protected]" },
1919
]
20-
requires-python = ">=3.9"
20+
requires-python = ">=3.8"
2121
classifiers = [
2222
"Development Status :: 3 - Alpha",
2323
"Environment :: Console",
@@ -35,6 +35,7 @@ classifiers = [
3535
"Operating System :: Unix",
3636
"Programming Language :: Python",
3737
"Programming Language :: Python :: 3 :: Only",
38+
"Programming Language :: Python :: 3.8",
3839
"Programming Language :: Python :: 3.9",
3940
"Programming Language :: Python :: 3.10",
4041
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)