Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow to select a subset of columns #189

Merged
merged 14 commits into from
Feb 27, 2024
Merged
Changes from 1 commit
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
19 changes: 16 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,26 @@ cargo-test = cargo test
## Docs
pdoc = pdoc -o docs python/fastexcel

lint:
lint-python:
$(ruff)
$(format) --check --diff

lint-rust:
$(mypy)
PrettyWood marked this conversation as resolved.
Show resolved Hide resolved
$(clippy)
format:

lint: lint-rust lint-python

format-python:
$(ruff) --fix
$(format)

format-rust:
$(fmt)
$(clippy) --fix --lib -p fastexcel --allow-dirty --allow-staged

format: format-rust format-python

install-test-requirements:
pip install -U -r test-requirements.txt -r build-requirements.txt

Expand All @@ -39,10 +48,14 @@ dev-install:
prod-install:
./prod_install.sh

test:
test-rust:
$(cargo-test)

test-python:
$(pytest)

test: test-rust test-python

doc:
$(pdoc)

Expand Down