mirror of
https://github.com/dlt-hub/dlt.git
synced 2025-12-17 19:31:30 +00:00
* bumps to version 1.20.0 * update the hub reference docs, add CI check * use dependency specifier in hub for plugin version check * minimum dlt runtime cli check * rollaback to old fsspec min version * fixes test_hub ci workflow * fixes flaky test * bumps hub extra * updates cli docs linting * fixes docs lock --------- Co-authored-by: Marcin Rudolf <rudolfix@rudolfix.org> Co-authored-by: ivasio <ivan@dlthub.com>
15 lines
628 B
Makefile
15 lines
628 B
Makefile
.PHONY: update-cli-docs, check-cli-docs, dev
|
|
# this must be run from `dlthub_cli` to see workspace commands
|
|
# it will use dlthub and dlt-runtime versions from dlt/docs/pyproject.toml to generate docs
|
|
|
|
dev:
|
|
uv sync
|
|
|
|
update-cli-docs: dev
|
|
# generate as there's no license
|
|
RUNTIME__LICENSE="" uv run dlt --debug render-docs ../../website/docs/hub/command-line-interface.md --commands license workspace profile runtime
|
|
|
|
check-cli-docs: dev
|
|
# generate as there's no license
|
|
RUNTIME__LICENSE="" uv run dlt --debug render-docs ../../website/docs/hub/command-line-interface.md --compare --commands license workspace profile runtime
|