Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: crate/cratedb-sqlparse
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: crate/cratedb-sqlparse
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: relax-python-version
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 24, 2025

  1. Python: Permit installation on Python 3.8

    Even if EOL, some projects still provide support for Python 3.8.
    amotl committed Apr 24, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5561f48 View commit details
Showing with 10 additions and 2 deletions.
  1. +8 −1 .github/workflows/python.yml
  2. +2 −1 cratedb_sqlparse_py/pyproject.toml
9 changes: 8 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,14 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
]

env:
OS: ${{ matrix.os }}
3 changes: 2 additions & 1 deletion cratedb_sqlparse_py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ license = { text = "Apache License 2.0" }
authors = [
{ name = "Ivan Sanchez Valencia", email = "ivan.sanchezvalencia@crate.io" },
]
requires-python = ">=3.9"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
@@ -35,6 +35,7 @@ classifiers = [
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",