File tree Expand file tree Collapse file tree 6 files changed +21
-4
lines changed
Expand file tree Collapse file tree 6 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 99 pull-requests : write
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/labeler@v5
12+ - uses : actions/labeler@v5
13+ with :
14+ repo-token : " ${{ secrets.GH_PAT }}"
Original file line number Diff line number Diff line change 4444 - name : Lint with ruff
4545 run : |
4646 ruff check ${{env.PROJECT_FOLDER}} --fix
47- - uses : stefanzweifel/git-auto-commit-action@v5
47+ - uses : stefanzweifel/git-auto-commit-action@v6
4848 with :
4949 commit_message : " style: style fixes by ruff and autoformatting by black"
Original file line number Diff line number Diff line change @@ -130,3 +130,4 @@ dmypy.json
130130* .qm
131131
132132loopstructural /embedded_external_libs /*
133+ .DS_Store
Original file line number Diff line number Diff line change @@ -25,4 +25,5 @@ version=0.1.0
2525changelog=
2626
2727# python deps
28- plugin_dependencies=qpip
28+ plugin_dependencies=qpip
29+
Original file line number Diff line number Diff line change 2121 __title__ ,
2222 __uri_homepage__ ,
2323)
24+ try :
25+ import LoopStructural
26+ except ImportError :
27+ raise ImportError (
28+ "LoopStructural is not installed. Please install it using the requirements.txt file in the plugin directory."
29+ )
30+ try :
31+ import pyvistaqt
32+ except ImportError :
33+ raise ImportError (
34+ "pyvistaqt is not installed. Please install it using the requirements.txt file in the plugin directory."
35+ )
2436from loopstructural .gui .dlg_settings import PlgOptionsFactory
2537from loopstructural .main .data_manager import ModellingDataManager
2638from loopstructural .main .model_manager import GeologicalModelManager
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ pyvistaqt
22pyvista
33LoopStructural == 1.6.17
44geoh5py
5- meshio
5+ meshio
6+
You can’t perform that action at this time.
0 commit comments