Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: check
run: |
poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency
poetry run pip-audit

doctest:
name: "🧪 Run Doctests"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ typecheck: ## Typecheck source files

.PHONY: audit
audit: ## Audit project dependencies
poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency
poetry run pip-audit

.PHONY: check
check: ## Run all checks
Expand Down
1 change: 0 additions & 1 deletion docs/examples/aggregate_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import numpy as np
from mesh2vec.mesh2vec_cae import Mesh2VecCae


# %%
# Load Shell and features from ANSA
# ----------------------------------
Expand Down
1 change: 0 additions & 1 deletion docs/examples/aggregate_warpage.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import numpy as np
from mesh2vec.mesh2vec_cae import Mesh2VecCae


# %%
# Load Shell from ANSA, simulation results from d3plot
# -----------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion docs/examples/plot_neighbor_distances.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import pandas as pd
from mesh2vec.mesh2vec_cae import Mesh2VecCae


# %%
# Load Shell from ANSA
# ----------------------
Expand Down
1 change: 0 additions & 1 deletion docs/examples/plot_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from lasso.dyna import ArrayType
from mesh2vec.mesh2vec_cae import Mesh2VecCae


# %%
# Load Shell from ANSA, simulation results from d3plot
# -----------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion docs/examples/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import numpy as np
from mesh2vec.mesh2vec_cae import Mesh2VecCae


# %%
# Load Shell from ANSA
# -----------------------------------------------------
Expand Down
145 changes: 97 additions & 48 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dev = [
"check-wheel-contents (>=0.6.3,<1.0.0)",
"pip-audit (>=2.9.0,<3.0.0)",
"pytest (>=8.4.2,<9.0.0)",
"black (>=25.9.0,<26.0.0)",
"black (>=26.3.1,<27.0.0)",
"matplotlib (>=3.10.1,<4.0.0)",
"ipython (>=9.0.0,<10.0.0)",
"notebook (>=7.4.7,<8.0.0)"
Expand Down
1 change: 0 additions & 1 deletion scripts/evaluation_1x0x3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import numpy as np
from mesh2vec.mesh2vec_cae import Mesh2VecCae


DIST = 30
PATH = "data/hat/cached_hat_key.json"

Expand Down
Loading