Skip to content

Increase minimum Python to 3.9 and test against 3.13 #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ jobs:
matrix:
include:
- os: ubuntu-latest
python: 3.8
toxenv: py38
- os: ubuntu-latest
python: 3.9
python: '3.9'
toxenv: py39
- os: ubuntu-latest
python: '3.10'
Expand All @@ -29,6 +26,9 @@ jobs:
- os: ubuntu-latest
python: '3.12'
toxenv: py312
- os: ubuntu-latest
python: '3.13'
toxenv: py313
runs-on: ${{ matrix.os }}

steps:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [
]
description = "Foobar example package."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down Expand Up @@ -67,7 +67,7 @@ plugins = ["covdefaults"]
omit = ["examples"]

[tool.mypy]
python_version = "3.10"
python_version = "3.12"
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
Expand All @@ -89,7 +89,7 @@ allow_untyped_defs = true

[tool.ruff]
line-length = 79
target-version = "py38"
target-version = "py39"

[tool.ruff.format]
indent-style = "space"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, py311, py312, pre-commit, docs
envlist = py39, py310, py311, py312, py313, pre-commit, docs

[testenv]
extras = dev
Expand Down