Compare commits

..

No commits in common. "main" and "0.7.3" have entirely different histories.
main ... 0.7.3

6 changed files with 5 additions and 34 deletions

View file

@ -1,26 +0,0 @@
repos:
- repo: https://github.com/pycqa/flake8
rev: 7.3.0
hooks:
- id: flake8
args: ["--select=F"]
types: [python]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/PyCQA/bandit
rev: 1.9.2
hooks:
- id: bandit
files: ^bouquin/
args: ["-s", "B110"]

View file

@ -21,15 +21,12 @@ if [[ -z "${VERSION}" ]]; then
exit 1 exit 1
fi fi
set +e
sed -i s/version.*$/version\ =\ \"${VERSION}\"/g pyproject.toml sed -i s/version.*$/version\ =\ \"${VERSION}\"/g pyproject.toml
git add pyproject.toml git add pyproject.toml
git commit -m "Bump to ${VERSION}" git commit -m "Bump to ${VERSION}"
git push origin main git push origin main
set -e
# Clean caches etc # Clean caches etc
filedust -y . filedust -y .