Skip to content

Commit 48d9c42

Browse files
committed
2 parents 74fa9bb + 750a189 commit 48d9c42

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,13 @@ jobs:
3535
# https://blog.jaraco.com/efficient-use-of-ci-resources/
3636
matrix:
3737
python:
38-
- "3.8"
38+
- "3.9"
3939
- "3.13"
4040
platform:
4141
- ubuntu-latest
4242
- macos-latest
4343
- windows-latest
4444
include:
45-
- python: "3.9"
46-
platform: ubuntu-latest
4745
- python: "3.10"
4846
platform: ubuntu-latest
4947
- python: "3.11"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.5.6
3+
rev: v0.7.1
44
hooks:
55
- id: ruff
66
args: [--fix, --unsafe-fixes]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.12",
3030
"Topic :: Software Development :: Testing",
3131
]
32-
requires-python = ">=3.8"
32+
requires-python = ">=3.9"
3333
dependencies = [
3434
"pytest>=6.0",
3535
]

ruff.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# include pyproject.toml for requires-python (workaround astral-sh/ruff#10299)
2+
include = "pyproject.toml"
3+
14
[lint]
25
extend-select = [
36
"C901",

0 commit comments

Comments
 (0)