Skip to content

Commit

Permalink
chore: Bump Nox
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 10, 2025
1 parent 2548877 commit deeb5ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/resources/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
7 changes: 3 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
]
main_python_version = "3.13"
locations = "singer_sdk", "tests", "noxfile.py", "docs/conf.py"
nox.options.sessions = (
nox.options.sessions = [
"mypy",
"tests",
"benches",
"doctest",
"test_cookiecutter",
)
]

# TODO: https://github.com/wntrblm/nox/pull/917
dependency_groups = nox.project.load_toml("pyproject.toml")["dependency-groups"]
Expand Down Expand Up @@ -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",
]
Expand All @@ -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)

0 comments on commit deeb5ed

Please sign in to comment.