Skip to content

Commit 8d9e8fd

Browse files
committed
2 parents 4a4bf92 + 6d38671 commit 8d9e8fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+214
-441
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,11 @@ jobs:
3737
- name: Installing dependencies
3838
shell: bash -l {0}
3939
run: |
40-
conda install -c conda-forge cython numpy scipy scikit-image scikit-learn pyamg pytest networkx osqp matplotlib -y
40+
conda install -c conda-forge numpy scipy scikit-image scikit-learn pytest networkx osqp matplotlib -y
4141
- name: Building and install
4242
shell: bash -l {0}
4343
run: |
44-
python setup.py install build_ext --inplace
45-
pip install .
44+
pip install . --user
4645
- name: pytest
4746
shell: bash -l {0}
4847
run: |

LoopStructural/analysis/__init__.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

LoopStructural/analysis/_fault_displacement.py

Lines changed: 0 additions & 116 deletions
This file was deleted.

LoopStructural/analysis/_fault_intersection.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

LoopStructural/analysis/_plane_fit.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

LoopStructural/analysis/_topology.py

Lines changed: 0 additions & 38 deletions
This file was deleted.

LoopStructural/api/_interpolate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
InterpolatorFactory,
77
InterpolatorType,
88
)
9-
from LoopStructural.utils import BoundingBox
9+
from LoopStructural.datatypes import BoundingBox
1010
from LoopStructural.utils import getLogger
1111

1212
logger = getLogger(__name__)

LoopStructural/api/_surface.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
from skimage.measure import marching_cubes_lewiner as marching_cubes
1212

1313
from LoopStructural.interpolators import GeologicalInterpolator
14-
from LoopStructural.utils import BoundingBox
15-
from LoopStructural.datatypes import Surface
14+
from LoopStructural.datatypes import Surface, BoundingBox
1615

1716
surface_list = dict[str, tuple[npt.ArrayLike, npt.ArrayLike, npt.ArrayLike, npt.ArrayLike]]
1817

LoopStructural/datasets/_example_models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
vis = True
32
try:
43
pass

LoopStructural/datatypes/_bounding_box.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,5 +190,6 @@ def regular_grid(self, nsteps=None, shuffle=False, order="C"):
190190
[xx.flatten(order=order), yy.flatten(order=order), zz.flatten(order=order)]
191191
).T
192192
if shuffle:
193+
# logger.info("Shuffling points")
193194
rng.shuffle(locs)
194195
return locs

0 commit comments

Comments
 (0)