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
8 changes: 1 addition & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ repos:
rev: v0.14.0
hooks:
- id: ruff-format
args: ["--preview"]
- id: ruff
- id: ruff-check
args: ["--exit-non-zero-on-fix"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand All @@ -15,11 +14,6 @@ repos:
- id: check-yaml
- id: debug-statements
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py310-plus]
- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v1.0.0
hooks:
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include *.py
include *.rst
include *.toml
include LICENSE
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=40",
"setuptools>=61",
]
Comment thread
icemac marked this conversation as resolved.

[project]
Expand Down Expand Up @@ -51,7 +51,9 @@ entry-points.pytest11.rerunfailures = "pytest_rerunfailures"
readme = { file = [ "HEADER.rst", "README.rst", "CHANGES.rst" ] }

[tool.ruff]
target-version = "py310"
fix = true
format.preview = true
Comment thread
Borda marked this conversation as resolved.
lint.select = [
"E", # https://pypi.org/project/pyflakes/
"F", # https://pypi.org/project/pyflakes/
Expand Down
4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

Loading