* Update .gitignore * Simplify packaging, move mypy config to pyproject.toml * Reflow Tidelift spiel * Freshen up contribution guide * Update CI * Modernize tox & CI * 3.11 * Don't pass args to build in CI * oops * Add wheel/dist inspection * Simplify conf.py * fix * simplify * Clarify license * cleanup * docs * add missing _ * parallel output sucks
46 lines
933 B
YAML
46 lines
933 B
YAML
---
|
|
ci:
|
|
autoupdate_schedule: monthly
|
|
|
|
default_language_version:
|
|
python: python3.10
|
|
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.6.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
additional_dependencies: [toml]
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.37.3
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py36-plus]
|
|
|
|
- repo: https://github.com/asottile/yesqa
|
|
rev: v1.4.0
|
|
hooks:
|
|
- id: yesqa
|
|
additional_dependencies: [flake8-bugbear]
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [flake8-bugbear]
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: debug-statements
|
|
- id: check-toml
|
|
- id: check-yaml
|