Skip to content

Commit ce6d975

Browse files
committed
Merge branch 'dev'
2 parents f65a7e7 + 6480505 commit ce6d975

File tree

118 files changed

+7312
-1390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+7312
-1390
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*.md

Makefile

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,17 @@
11
# === USER PARAMETERS
22

33
ifdef OS
4-
export PYTHON_COMMAND=python
5-
export UV_INSTALL_CMD=powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
64
export VENV_BIN=.venv/Scripts
75
else
8-
export PYTHON_COMMAND=python3.12
9-
export UV_INSTALL_CMD=curl -LsSf https://astral.sh/uv/install.sh | sh
106
export VENV_BIN=.venv/bin
117
endif
128

13-
export SRC_DIR=ml3_platform_docs
14-
15-
DEPLOY_ENVIRONMENT=$(shell if [ $(findstring main, $(BRANCH_NAME)) ]; then \
16-
echo 'prod'; \
17-
elif [ $(findstring pre, $(BRANCH_NAME)) ]; then \
18-
echo 'pre'; \
19-
else \
20-
echo 'dev'; \
21-
fi)
22-
# If use deploy_environment in the tag system
23-
# `y` => yes
24-
# `n` => no
25-
USE_DEPLOY_ENVIRONMENT=n
26-
279
# == SETUP REPOSITORY AND DEPENDENCIES
2810

29-
install-uv:
30-
# install uv package manager
31-
$(UV_INSTALL_CMD)
32-
# create environment
33-
uv venv -p $(PYTHON_COMMAND)
34-
35-
compile:
36-
# install extra dev group
37-
uv pip compile pyproject.toml -o requirements.txt --extra dev --cache-dir .uv_cache
38-
39-
install:
40-
uv pip sync requirements.txt --cache-dir .uv_cache
11+
dev-sync:
12+
uv sync --cache-dir .uv_cache --all-extras
4113

42-
setup: install-uv compile install
14+
setup: dev-sync
4315

4416
build-docs:
4517
. $(VENV_BIN)/activate && mkdocs build

docs/404.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/api/examples/index.html

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

docs/api/index.html

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

docs/api/python/client/index.html

Lines changed: 212 additions & 189 deletions
Large diffs are not rendered by default.

docs/api/python/enums/index.html

Lines changed: 17 additions & 14 deletions
Large diffs are not rendered by default.

docs/api/python/exceptions/index.html

Lines changed: 37 additions & 30 deletions
Large diffs are not rendered by default.

docs/api/python/index.html

Lines changed: 5 additions & 3 deletions
Large diffs are not rendered by default.

docs/api/python/models/index.html

Lines changed: 42 additions & 37 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)