Skip to content

Commit

Permalink
bumped flake8 version to fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
czaloom committed Dec 11, 2024
1 parent 2967fb0 commit c6e78ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.1.0
hooks:
- id: flake8
args: ["--ignore=E501,E203,W503"]
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
.PHONY: install tests external-tests clean help
.PHONY: install install-dev pre-commit tests external-tests clean help

install:
@echo "Installing from source..."
pre-commit install
pip install -e src/[mistral, openai]

install-dev:
pip install -e src/[all]
pre-commit install

pre-commit:
@echo "Running pre-commit..."

pre-commit run --all

tests:
@echo "Running unit tests..."
Expand Down

0 comments on commit c6e78ab

Please sign in to comment.