This commit is contained in:
Quanzheng Long
2026-03-18 10:20:22 -07:00
parent 88dfc0a6bb
commit 12ea4c24d5
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -8,8 +8,9 @@ TEST_BASE = uv run --python $(PYTHON_VERSION) --with pytest --with anyio --with
publish-to-pypi-saf-python-sdk:
@test -n "$(PYPI_TOKEN)" || (echo "PYPI_TOKEN is required"; exit 1)
cd "$(CURDIR)" && \
PATH="$(HOME)/.cargo/bin:$$PATH" \
MATURIN_PYPI_TOKEN="$(PYPI_TOKEN)" \
uvx maturin publish --repository $(PYPI_REPOSITORY) --non-interactive --skip-existing --no-sdist
uv run --with maturin maturin publish --repository $(PYPI_REPOSITORY) --non-interactive --skip-existing --no-sdist
all-tests:
$(TEST_BASE) tests/advanced-graph/test_*.py
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "saf-python-sdk"
version = "0.1.2"
version = "0.1.3"
description = "Standalone advanced graph runtime powered by Rust engine"
readme = "README.md"
requires-python = ">=3.10"
+1 -1
View File
@@ -4,5 +4,5 @@ requires-python = ">=3.10"
[[package]]
name = "saf-python-sdk"
version = "0.1.2"
version = "0.1.3"
source = { editable = "." }