-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump extern/openPMD-api from
94a3a8f
to 269c5e2
Bumps [extern/openPMD-api](https://github.com/openPMD/openPMD-api) from `94a3a8f` to `269c5e2`. - [Release notes](https://github.com/openPMD/openPMD-api/releases) - [Commits](openPMD/openPMD-api@94a3a8f...269c5e2) --- updated-dependencies: - dependency-name: extern/openPMD-api dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
09f1589
commit 505370b
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openPMD-api
updated
25 files
+1 −2 | .github/workflows/linux.yml | |
+1 −2 | .github/workflows/macos.yml | |
+0 −52 | .github/workflows/mpirun_workaround.sh | |
+8 −3 | CMakeLists.txt | |
+26 −33 | include/openPMD/IO/AbstractIOHandler.hpp | |
+101 −4 | include/openPMD/Mesh.hpp | |
+3 −2 | include/openPMD/Record.hpp | |
+27 −0 | include/openPMD/UnitDimension.hpp | |
+2 −0 | include/openPMD/backend/Attributable.hpp | |
+2 −2 | include/openPMD/backend/BaseRecord.hpp | |
+24 −2 | include/openPMD/binding/python/UnitDimension.hpp | |
+6 −1 | openPMDConfig.cmake.in | |
+69 −0 | src/IO/AbstractIOHandler.cpp | |
+2 −2 | src/Iteration.cpp | |
+193 −14 | src/Mesh.cpp | |
+7 −1 | src/Record.cpp | |
+14 −8 | src/Series.cpp | |
+59 −0 | src/UnitDimension.cpp | |
+6 −0 | src/backend/Attributable.cpp | |
+86 −5 | src/binding/python/Mesh.cpp | |
+15 −2 | src/binding/python/Record.cpp | |
+21 −1 | src/binding/python/UnitDimension.cpp | |
+42 −10 | test/CoreTest.cpp | |
+37 −2 | test/SerialIOTest.cpp | |
+106 −2 | test/python/unittest/API/APITest.py |