Skip to content

Commit 15d7432

Browse files
committed
Python: Permit installation on Python 3.8
Even if EOL, some projects still provide support for Python 3.8.
1 parent 32d7af2 commit 15d7432

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
@@ -35,7 +35,14 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
os: ["ubuntu-latest"]
38-
python-version: ["3.10", "3.11", "3.12", "3.13"]
38+
python-version: [
39+
"3.8",
40+
"3.9",
41+
"3.10",
42+
"3.11",
43+
"3.12",
44+
"3.13",
45+
]
3946

4047
env:
4148
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)