Skip to content

Commit 00738fb

Browse files
committed
Add target for requirements; update pre-commit versions
1 parent bfc1140 commit 00738fb

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ repos:
2424

2525
# Security checks
2626
- repo: https://github.com/PyCQA/bandit
27-
rev: 1.8.5
27+
rev: 1.8.6
2828
hooks:
2929
- id: bandit
3030
args: ['--configfile', 'pyproject.toml', '-f', 'json', '-o', 'bandit-report.json']
3131
exclude: ^tests/
3232

3333
# Check for merge conflicts
3434
- repo: https://github.com/pre-commit/pre-commit-hooks
35-
rev: v5.0.0
35+
rev: v6.0.0
3636
hooks:
3737
- id: check-merge-conflict
3838
- id: check-yaml

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
APP = $(notdir $(CURDIR))
22
TAG = $(shell echo "$$(date +%F)-$$(git rev-parse --short HEAD)")
3-
DOCKER_REPO = ghcr.io/managedkaos
4-
53

64
help:
75
@echo "Run make <target> where target is one of the following..."
@@ -22,6 +20,9 @@ help:
2220

2321
all: requirements lint test build
2422

23+
requirements:
24+
pip install --quiet --upgrade --requirement requirements.txt
25+
2526
development-requirements: requirements
2627
pip install --quiet --upgrade --requirement development-requirements.txt
2728

0 commit comments

Comments
 (0)