Skip to content

Commit 9f87e7c

Browse files
chore(deps): update from template
1 parent 0cc7803 commit 9f87e7c

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_commit: v0.13.11
1+
_commit: v0.13.13
22
_src_path: gh:helmut-hoffer-von-ankershoffen/oe-python-template
33
attestations_enabled: true
44
author_email: helmuthva@gmail.com

ATTRIBUTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12113,7 +12113,7 @@ License: LGPL-2.1-or-later
1211312113

1211412114
```
1211512115

12116-
## oe-python-template-example (0.4.7) - MIT License
12116+
## oe-python-template-example (0.4.8) - MIT License
1211712117

1211812118
🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
1211912119

CLI_REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ oe-python-template-example [OPTIONS] COMMAND [ARGS]...
1414
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
1515
* `--help`: Show this message and exit.
1616

17-
🧠 OE Python Template Example v0.4.7 - built with love in Berlin 🐻
17+
🧠 OE Python Template Example v0.4.8 - built with love in Berlin 🐻
1818

1919
**Commands**:
2020

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile for running common development tasks
22

33
# Define all PHONY targets
4-
.PHONY: all act audit bump clean dist dist_vercel docs docker_build install lint setup setup test test_scheduled test_long_running update_from_template watch_gui
4+
.PHONY: all act audit bump clean dist dist_vercel docs docker_build install lint pre_commit_run_all setup setup test test_scheduled test_long_running update_from_template watch_gui
55

66
# Main target i.e. default sessions defined in noxfile.py
77
all:
@@ -33,7 +33,7 @@ act audit bump dist dist_vercel docs lint setup test update_from_template:
3333
## Install development dependencies and pre-commit hooks
3434
install:
3535
sh install.sh
36-
pre-commit install
36+
uv run pre-commit install
3737

3838
## Run tests marked as scheduled
3939
test_scheduled:
@@ -60,6 +60,9 @@ docker_build:
6060
docker build -t oe-python-template-example --target all .
6161
docker build -t oe-python-template-example --target slim .
6262

63+
pre_commit_run_all:
64+
uv run pre-commit run --all-files
65+
6366
watch_gui:
6467
uv run watch_gui.py
6568

@@ -82,8 +85,9 @@ help:
8285
@echo " dist_vercel - Package as Vercel Function into dist_vercel/"
8386
@echo " docs [pdf] - Build documentation (add pdf for PDF format)"
8487
@echo " docker_build - Build Docker image oe-python-template-example"
85-
@echo " install - Install development dependencies and pre-commit hooks"
88+
@echo " install - Install or update development dependencies inc. pre-commit hooks"
8689
@echo " lint - Run linting and formatting checks"
90+
@echo " pre_commit_run_all - Run pre-commit hooks on all files"
8791
@echo " setup - Setup development environment"
8892
@echo " test [3.11|3.12|3.13] - Run tests (for specific Python version)"
8993
@echo " test_scheduled - Run tests marked as scheduled with Python 3.11"

0 commit comments

Comments
 (0)