add nox to dev dep group and remove script metadata from noxfile.py (#164)

This commit is contained in:
Josh Thomas 2025-07-24 19:12:38 -05:00 committed by GitHub
parent 8dadb15e44
commit 8f50e27014
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 100 additions and 17 deletions

View file

@ -1,12 +1,3 @@
#!/usr/bin/env -S uv run --quiet
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "bumpver",
# "nox",
# ]
# ///
from __future__ import annotations
import json
@ -289,7 +280,3 @@ def get_version(session):
output = session.run(*command, silent=True)
match = re.search(r"New Version: (.+)", output)
return to_pep440(match.group(1)) if match else None
if __name__ == "__main__":
nox.main()