Skip to content

Commit 5cc8304

Browse files
committed
2 parents 5904204 + 750a189 commit 5cc8304

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
@@ -41,15 +41,13 @@ jobs:
4141
# https://blog.jaraco.com/efficient-use-of-ci-resources/
4242
matrix:
4343
python:
44-
- "3.8"
44+
- "3.9"
4545
- "3.13"
4646
platform:
4747
- ubuntu-latest
4848
- macos-latest
4949
- windows-latest
5050
include:
51-
- python: "3.9"
52-
platform: ubuntu-latest
5351
- python: "3.10"
5452
platform: ubuntu-latest
5553
- 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
@@ -16,7 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3 :: Only",
1818
]
19-
requires-python = ">=3.8"
19+
requires-python = ">=3.9"
2020
dependencies = [
2121
# Setuptools must require these
2222
"packaging",

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)