Skip to content

Commit

Permalink
feat: maturin bundle in python templater
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed Nov 23, 2024
1 parent baa189d commit 80c98d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ __pycache__/
*.pyc
.venv
.coverage
*.egg-info/

# Secrets
.env
.env
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ python_lint: ## Lint python code
python_test: ## Run python tests
pytest

.PHONY: python_install
python_install: ## Install python dev dependencies
pip install -e ".[dev]"

.PHONY: ci
ci: python_fmt python_lint python_test ## Run all CI checks
1 change: 1 addition & 0 deletions crates/cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ requires-python = ">=3.9"
[tool.maturin]
bindings = "bin"
strip = true
features = ["python"]

0 comments on commit 80c98d8

Please sign in to comment.