Skip to content

Commit e1b465c

Browse files
authored
Merge branch 'master' into roadmap-v2
2 parents 6693cd0 + f710193 commit e1b465c

4 files changed

Lines changed: 27 additions & 25 deletions

File tree

‎.github/workflows/tester.yml‎

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,48 +7,38 @@ on:
77
paths:
88
- '**.py'
99
- .github/workflows/tester.yml
10+
1011
pull_request:
1112
branches:
1213
- master
1314
paths:
1415
- '**.py'
1516
- .github/workflows/tester.yml
1617
workflow_dispatch:
17-
1818
jobs:
1919
continuous-integration:
2020
name: Continuous integration ${{ matrix.os }} python ${{ matrix.python-version }}
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
os: ${{ fromJSON(vars.BUILD_OS) }}
26-
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS) }}
27-
25+
os: ${{ fromJSON(vars.BUILD_OS)}}
26+
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
2827
steps:
2928
- uses: actions/checkout@v4
29+
- uses: conda-incubator/setup-miniconda@v3
3030

31-
- name: Set up uv
32-
uses: astral-sh/setup-uv@v3
3331
with:
34-
version: "latest"
35-
36-
- name: Set up Python ${{ matrix.matrix.python-version }}
37-
run: uv python install ${{ matrix.python-version }}
38-
39-
- name: Install dependencies and library
32+
python-version: ${{ matrix.python }}
33+
- name: Installing dependencies
34+
shell: bash -l {0}
4035
run: |
41-
uv pip install --system \
42-
numpy \
43-
scipy \
44-
scikit-image \
45-
scikit-learn \
46-
pytest \
47-
networkx \
48-
osqp \
49-
matplotlib \
50-
-e .[tests]
51-
36+
conda install -c conda-forge numpy scipy scikit-image scikit-learn pyvista pandas pytest networkx osqp matplotlib -y
37+
- name: Building and install
38+
shell: bash -l {0}
39+
run: |
40+
pip install . --user
5241
- name: pytest
42+
shell: bash -l {0}
5343
run: |
5444
pytest

‎.release-please-manifest.json‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"LoopStructural": "1.6.27",
2+
"LoopStructural": "1.6.28",
33
"packages/loop_common": "0.1.0",
44
"packages/loop_interpolation": "0.1.0"
5+
56
}

‎LoopStructural/CHANGELOG.md‎

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [1.6.28](https://github.com/Loop3D/LoopStructural/compare/v1.6.27...v1.6.28) (2026-06-03)
4+
5+
6+
### Bug Fixes
7+
8+
* add default for z ([12bdcd2](https://github.com/Loop3D/LoopStructural/commit/12bdcd2b1f9dcf8a5c3e19aa62dd68a11bd03f7f))
9+
* adding add_group and add points from dataframe for geoh5 + some tests ([9d29d31](https://github.com/Loop3D/LoopStructural/commit/9d29d31c28f619438fe41af806d9332181c0eb87))
10+
* adding gocad export for structured grid support ([228ca78](https://github.com/Loop3D/LoopStructural/commit/228ca78889c9a263c83da54837342adc69a5b083))
11+
* adding post_init to ValuePoints/VectorPoints to validate as numpy arrays ([df938d1](https://github.com/Loop3D/LoopStructural/commit/df938d18c9ed5524628e5bd7925536e7b9687f12))
12+
* vtk export had maximum > grid maximum ([5f37322](https://github.com/Loop3D/LoopStructural/commit/5f37322e0b9c27cb68b0628410e586dd8d40a200))
13+
314
## [1.6.27](https://github.com/Loop3D/LoopStructural/compare/v1.6.26...v1.6.27) (2026-04-14)
415

516

‎LoopStructural/version.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.6.27"
1+
__version__ = "1.6.28"

0 commit comments

Comments
 (0)