1
0
Fork 0

Adding upstream version 0.12.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-24 10:57:24 +01:00
parent d887bee5ca
commit 148efc9122
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
69 changed files with 12923 additions and 0 deletions

24
Makefile Normal file
View 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