Adding upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d887bee5ca
commit
148efc9122
69 changed files with 12923 additions and 0 deletions
24
Makefile
Normal file
24
Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
.PHONY: check
|
||||
check:
|
||||
ruff format .
|
||||
pytest
|
||||
ruff check . --fix
|
||||
mypy
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
ruff format .
|
||||
ruff check . --fix
|
||||
mypy
|
||||
|
||||
.PHONY: serve
|
||||
serve:
|
||||
textual run --dev -c python -m textual_fastdatatable
|
||||
|
||||
.PHONY: profile
|
||||
profile:
|
||||
pyinstrument -r html -o profile.html "src/scripts/run_arrow_wide.py"
|
||||
|
||||
.PHONY: benchmark
|
||||
benchmark:
|
||||
python src/scripts/benchmark.py > /dev/null
|
Loading…
Add table
Add a link
Reference in a new issue