
<!-- Thank you for contributing to Ruff! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary <!-- What's the purpose of the change? What does it do, and why? --> - `pre-commit-mirror-maker` is not suitable for generating multiple hooks in single `.pre-commit-hooks.yaml` file. - So replaced the script and github workflows. ## Test Plan <!-- How was it tested? --> - Update `pyproject.toml`'s `ruff==0.0.290` into `ruff==0.0.289`, and run the script. ```sh $ python3 mirror.py ... ```
14 lines
219 B
TOML
14 lines
219 B
TOML
[project]
|
|
name = "ruff-pre-commit"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"ruff==0.0.291",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"packaging~=23.1",
|
|
"pip-tools>=7.3.0,<8.0.0",
|
|
"urllib3>=2.0.5,<3.0.0",
|
|
]
|