• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openPMD / openPMD-api / 3443
83%

Build:
DEFAULT BRANCH: dev
Ran 08 Sep 2020 06:25AM UTC
Jobs 1
Files 97
Run time 10s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
3443

push

travis-ci-com

web-flow
Release: 0.12.0-alpha (#772)

### Complex Numbers, Close & Backend Options

This release adds data type support for complex numbers, allows to close iterations and adds first support for backend configuration options (via JSON), which are currently implemented for ADIOS2.
Further installation options have been added (homebrew and CLI tool support with pip).
New free standing functions and macro defines are provided for version checks.

Thanks to @ax3l, @franzpoeschel, and @LDAmorim for contributing to this release!

## Which version am I running?

### Python

```python
import openpmd_api
print(openpmd_api.__version__)
```

### C++

```C++
#include <openPMD/openPMD.hpp>
#include <iostream>

int main() {
    // query compile-time macros:
    std::cout << OPENPMDAPI_VERSION_MAJOR << "."
              << OPENPMDAPI_VERSION_MINOR << "."
              << OPENPMDAPI_VERSION_PATCH << std::endl;
    // there is also: OPENPMDAPI_VERSION_LABEL (e.g. "alpha")

    // or query the runtime API (new):
    std::cout << openPMD::getVersion() << std::endl;
    return 0;
}
```

### CLI

```bash
# new command line option:
openpmd-ls --version
```

5768 of 6911 relevant lines covered (83.46%)

0.83 hits per line

Jobs
ID Job ID Ran Files Coverage
19 3443.19 (BUILD=~/buildTmp SPACK_ROOT=$HOME/.cache/spack PATH=$PATH:$HOME/.cache/spack/bin BUILD_TYPE=Debug ADIOS2_VERSION=@2.6.0 PYBIND11_VERSION=@2.3.0 USE_SHARED=true CXXSPEC="%gcc@7.4.0" USE_MPI=ON USE_PYTHON=ON USE_HDF5=ON USE_ADIOS1=ON USE_ADIOS2=OFF) 08 Sep 2020 06:25AM UTC 0
83.46
Travis Job 3443.19
Source Files on build 3443
Detailed source file information is not available for this build.
  • Back to Repo
  • Build #3443
  • 23be484d on github
  • Prev Build on dev (#3439)
  • Next Build on dev (#3449)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc