Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.gz
*.zip
.python-version
/**/data/*

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down Expand Up @@ -168,4 +169,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

.DS_Store
.DS_Store
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.4
3.12.1
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ clean:
find . -name '*~' -delete
find . -name '.coverage.*' -delete

LINT_CONFIG = trane/ tests/ --config=./pyproject.toml
.PHONY: lint
lint:
black . --check
ruff .
ruff check $(LINT_CONFIG)
ruff format --check $(LINT_CONFIG)

.PHONY: lint-fix
lint-fix:
black .
ruff . --fix
ruff check --fix $(LINT_CONFIG)
ruff format $(LINT_CONFIG)
Loading