This commit is contained in:
Zanie 2023-10-27 12:48:14 -05:00
parent b6066c6bef
commit c3354ad843
5 changed files with 4 additions and 5 deletions

View File

@ -241,7 +241,6 @@ jobs:
name: ecosystem-result
path: ecosystem-result
cargo-udeps:
name: "cargo udeps"
runs-on: ubuntu-latest

View File

@ -10,10 +10,10 @@ from contextlib import nullcontext
from pathlib import Path
from signal import SIGINT, SIGTERM
from ruff_ecosystem import logger
from ruff_ecosystem.defaults import DEFAULT_TARGETS
from ruff_ecosystem.main import OutputFormat, main
from ruff_ecosystem.projects import RuffCommand
from ruff_ecosystem import logger
def excepthook(type, value, tb):

View File

@ -4,7 +4,6 @@ Execution, comparison, and summary of `ruff format` ecosystem checks.
from __future__ import annotations
import re
import time
from asyncio import create_subprocess_exec
from dataclasses import dataclass

View File

@ -9,7 +9,7 @@ from dataclasses import dataclass, field
from enum import Enum
from pathlib import Path
from subprocess import PIPE
from typing import AsyncGenerator, Self
from typing import Self
from ruff_ecosystem import logger
from ruff_ecosystem.check import CheckOptions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
"""
DEPRECATED: This script is being replaced by the ruff-ecosystem package at `python/ruff-ecosystem`.
**DEPRECATED** This script is being replaced by the ruff-ecosystem package.
Check two versions of ruff against a corpus of open-source code.