Skip to content

Commit ddc01f8

Browse files
committed
Fix some build issues (remove yaml import for test)
1 parent 2eadaa5 commit ddc01f8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/model-view-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install flake8 pytest numpy coverage pygame matplotlib scipy shapely yaml
26+
pip install flake8 pytest numpy coverage pygame matplotlib scipy shapely
2727
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2828
- name: Lint with flake8
2929
run: |

mesh_model/mesh_analysis/trimesh_analysis.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import numpy as np
1010
import matplotlib.pyplot as plt
11-
from yaml import warnings
1211

1312
from mesh_model.mesh_analysis.global_mesh_analysis import GlobalMeshAnalysis, NodeAnalysis
1413
from mesh_model.mesh_struct.mesh_elements import Dart, Node, Face

0 commit comments

Comments
 (0)