Skip to content

Commit bc182be

Browse files
authored
Merge pull request #2 from virtualcell/notebooks
add additional notebooks to demonstrate pyvcell potential
2 parents 02aafa5 + bfa384d commit bc182be

23 files changed

+41703
-51
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,6 @@ test_output_1/
173173
.python-version
174174

175175
**/.DS_Store
176+
/.venv_jupyter/
177+
178+
examples/test_output/SimID_*

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ repos:
77
- id: check-toml
88
- id: check-yaml
99
- id: end-of-file-fixer
10+
exclude: "examples/.*"
1011
- id: trailing-whitespace
12+
exclude: "examples/.*"
1113

1214
- repo: https://github.com/astral-sh/ruff-pre-commit
1315
rev: "v0.5.2"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ check: ## Run code quality tools.
1414
@echo "🚀 Static type checking: Running mypy"
1515
@poetry run mypy
1616
@echo "🚀 Checking for obsolete dependencies: Running deptry"
17-
@poetry run deptry --exclude .venv .
17+
@poetry run deptry --exclude=.venv --exclude=.venv_jupyter --exclude=examples .
1818

1919
.PHONY: test
2020
test: ## Test the code with pytest

0 commit comments

Comments
 (0)