Skip to content

Commit

Permalink
fix(deps): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
edeckers committed Aug 30, 2023
1 parent a43f839 commit 769b3ba
Show file tree
Hide file tree
Showing 6 changed files with 1,028 additions and 1,198 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ repos:
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.0.0
hooks:
- id: mypy
- id: mypy
25 changes: 14 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# source: https://github.com/mozilla-services/telescope/pull/752/files
.PHONY: clean format help install lint release test

.PHONY: clean format help lint test

INSTALL_STAMP := .install.stamp
NAME := huemon

.DEFAULT_GOAL := help
Expand All @@ -19,21 +16,27 @@ help:
@echo ""
@echo "Check the Makefile to know exactly what each target is doing."

# PHONY
clean:
src/bin/clean.sh

format: $(INSTALL_STAMP)
format: poetry.lock
src/bin/format.sh

install: $(INSTALL_STAMP)
$(INSTALL_STAMP): pyproject.toml poetry.lock
src/bin/install.sh
install: poetry.lock

lint: $(INSTALL_STAMP)
lint: poetry.lock
src/bin/lint.sh

release: $(INSTALL_STAMP)
release: poetry.lock
assets/release/release-all.sh

test: $(INSTALL_STAMP)
test: poetry.lock
src/bin/test.sh

# FILES
poetry.lock: .venv pyproject.toml
touch poetry.lock

.venv: # assumption: .venv existst -> poetry is installed
src/bin/install.sh
Loading

0 comments on commit 769b3ba

Please sign in to comment.