Remove empty setup.py and references to it

This commit is contained in:
Jelmer Draaijer 2024-09-06 17:10:40 +02:00
parent ea4cd48e6c
commit 9baf27636e
3 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ def write_changelog(file_path: Path, release: str, content: str) -> None:
def update_version(file_path: Path, release: str) -> None:
"""Update template version in setup.py."""
"""Update template version in pyproject.toml."""
old_content = file_path.read_text()
updated_content = re.sub(
r'\nversion = "\d+\.\d+\.\d+"\n',

View File

View File

@ -9,4 +9,4 @@ commands = pytest -n auto {posargs:./tests}
[testenv:black-template]
deps = black
commands = black --check hooks tests setup.py docs scripts
commands = black --check hooks tests docs scripts