feat: move template into subdirectory
Some checks failed
release / Release (push) Failing after 14s

BREAKING CHANGE: reorganises repo, arbitrary choice for v1 release
This commit is contained in:
2025-05-12 10:55:41 +02:00
parent 4456f21f90
commit 79845f7697
32 changed files with 3 additions and 6 deletions

View File

@ -0,0 +1,3 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
semantic-release changelog -D version_variable=$SCRIPT_DIR/../../semantic_release/__init__.py:__version__
semantic-release version -D version_variable=$SCRIPT_DIR/../../semantic_release/__init__.py:__version__

View File

@ -0,0 +1,3 @@
black --line-length=100 $(git diff --cached --name-only --diff-filter=ACM -- '*.py')
isort --line-length=100 --profile=black --multi-line=3 --trailing-comma $(git diff --cached --name-only --diff-filter=ACM -- '*.py')
git add $(git diff --cached --name-only --diff-filter=ACM -- '*.py')