Skip to content
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
1 change: 0 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ venv: .venv

test:
python -m $(PKG).tests
python -m mypy -p $(PKG)
pyrefly check -c pyproject.toml

lint:
Expand Down
11 changes: 2 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers = [
"Topic :: Software Development :: Quality Assurance",
]

requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"click >= 8.0, < 8.2",
"libcst >= 0.3.18",
Expand All @@ -44,11 +44,10 @@ docs = [
]
dev = [
"attribution == 1.8.0",
"black == 25.11.0",
"black == 26.3.1",
"build > 1",
"flake8 == 7.3.0",
"flake8-bugbear == 24.12.12",
"mypy == 1.19.1",
"ufmt == 2.8.0",
"usort == 1.0.8.post1",
"pyrefly == 0.63.1",
Expand Down Expand Up @@ -100,12 +99,6 @@ exclude = [
"/legacy",
]

[tool.mypy]
strict = true
python_version = "3.9"
ignore_missing_imports = true
warn_unused_ignores = false

[tool.pyrefly]
project_includes = [
# Start by adding a single file and we'll expand as we go
Expand Down
Loading