Skip to content

Commit

Permalink
Drop support for python < 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lmignon committed Jan 8, 2025
1 parent 3ef2db7 commit c12b12e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: "3.7"
machine: ubuntu-22.04
- python-version: "3.8"
machine: ubuntu-22.04
- python-version: "3.9"
machine: ubuntu-22.04
- python-version: "3.10"
Expand All @@ -33,6 +29,8 @@ jobs:
machine: ubuntu-22.04
- python-version: "3.12"
machine: ubuntu-22.04
- python-version: "3.13"
machine: ubuntu-22.04
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies = [
"pydantic>=2.0.2",
"wrapt",
]
requires-python = ">=3.7"
requires-python = ">=3.9"

[project.optional-dependencies]
test = [
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
[gh-actions]
python =
3.7: py37, typing
3.8: py38, typing
3.9: py39, typing, pypi-description
3.10: py310, typing
3.11: py311, typing
3.12: py312, typing
3.13: py313, typing
pypi-description: pypi-description

[tox]
isolated_build = True
envlist =
py37
py38
py39
py310
py311
py312
py313
lint
typing
pypi-description
Expand Down

0 comments on commit c12b12e

Please sign in to comment.