You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/run-solverdummy.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ jobs:
11
11
name: Run solverdummies
12
12
runs-on: ubuntu-latest
13
13
container:
14
-
image: precice/precice:latest
14
+
image: precice/precice:develop
15
15
options: --user root
16
16
steps:
17
17
- name: Checkout Repository
@@ -25,7 +25,7 @@ jobs:
25
25
- name: Install bindings
26
26
run: pip3 install --user .
27
27
- name: Check whether preCICE was built with MPI # reformat version information as a dict and check whether preCICE was compiled with MPI
28
-
run: python3 -c "import precice; assert({item.split('=')[0]:item.split('=')[-1] for item in str(precice.get_version_information()).split(';')}['PRECICE_MPICommunication']=='Y')"
28
+
run: python3 -c "import precice; assert({item.split('=')[0]:item.split('=')[-1] for item in str(precice.get_version_information()).split(';')}['PRECICE_FEATURE_MPI_COMMUNICATION']=='Y')"
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## 3.0.0.0
6
+
7
+
* Add Cython as build time dependency https://github.com/precice/python-bindings/pull/177
8
+
* Update CMake configuration flags for preCICE source installation in Actions. https://github.com/precice/python-bindings/commit/23a840144c2647d6cf09c0ed87be3b768a22feb7
9
+
* Remove API functions `has_mesh` and `has_data` and rename `get_mesh_vertices_and_ids` to `get_mesh_vertices_and_coordinates`. https://github.com/precice/python-bindings/commit/cd446d2807b841d81a4cf5c9dd6656ab43c278c3
10
+
* Update API according to preCICE v3.0.0 https://github.com/precice/python-bindings/pull/179
11
+
5
12
## 2.5.0.4
6
13
7
14
* Add `tag_prefix = v` in versioneer configuration of `setup.cfg`.
0 commit comments