diff --git a/.github/workflows/resources/requirements.txt b/.github/workflows/resources/requirements.txt index c795af90d..ea4542346 100644 --- a/.github/workflows/resources/requirements.txt +++ b/.github/workflows/resources/requirements.txt @@ -1,4 +1,4 @@ griffe~=1.5 -nox @ git+https://github.com/wntrblm/nox.git@refs/pull/921/head +nox @ git+https://github.com/wntrblm/nox.git@main pre-commit==4.1.0 twine==6.1.0 diff --git a/noxfile.py b/noxfile.py index 2ff9bae11..035f62972 100644 --- a/noxfile.py +++ b/noxfile.py @@ -275,7 +275,6 @@ def version_bump(session: nox.Session) -> None: def api_changes(session: nox.Session) -> None: """Check for API changes.""" args = [ - "griffe", "check", "singer_sdk", ] @@ -286,4 +285,4 @@ def api_changes(session: nox.Session) -> None: if "GITHUB_ACTIONS" in os.environ: args.append("-f=github") - session.run("uv", "tool", "run", *args, external=True) + session.run("uvx", "griffe", *args, external=True)