Skip to content

Commit

Permalink
chore: Reintroduce Python 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Jan 15, 2025
1 parent ac933a4 commit bf6f4a9
Show file tree
Hide file tree
Showing 5 changed files with 164 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters-win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13']
python-version: ['3.11', '3.12', '3.13']

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13']
python-version: ['3.11', '3.12', '3.13']

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13']
python-version: ['3.11', '3.12', '3.13']

runs-on: ubuntu-latest

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13']
python-version: ['3.11', '3.12', '3.13']

runs-on: ubuntu-latest
container: debian:trixie
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.12,<3.14"
requires-python = ">=3.11,<3.14"
dependencies = [
"aiosqlite >=0.18",
"argcomplete >=2,<4",
Expand All @@ -36,6 +36,7 @@ dependencies = [
"pydantic >=2.0,<3.0",
"tabulate >=0.9",
"zstandard >=0.19",
"more-itertools >=10.3.0,<11.0.0; python_version < '3.12'",
]

[project.entry-points."gallia_plugins"]
Expand Down Expand Up @@ -81,7 +82,7 @@ plugins = [
]

[tool.ruff]
target-version = "py312"
target-version = "py311"
line-length = 100
exclude = ["docs/"]

Expand Down
Loading

0 comments on commit bf6f4a9

Please sign in to comment.