mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-08-03 20:14:19 -04:00
Makefile: remove target-version
This can be inferred from our pyproject.toml.
This commit is contained in:
parent
f9848efc1e
commit
38f164dbc4
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -48,14 +48,14 @@ clean: $(BROZZLER_EGG_LINK)
|
|||
|
||||
.PHONY: check
|
||||
check:
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) --target-version py37 .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) .
|
||||
|
||||
.PHONY: check-format
|
||||
check-format:
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) --select I --target-version py37 .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff format --check --target-version py37 .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) --select I .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff format --check .
|
||||
|
||||
.PHONY: format
|
||||
format:
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) --select I --target-version py37 --fix .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff format --target-version py37 .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff check $(OUTPUT_FLAGS) --select I --fix .
|
||||
$(VIRTUAL_ENV_DIR)/bin/ruff format .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue