-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### 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 ```
- Loading branch information
Showing
6 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,7 +142,7 @@ def build_extension(self, ext): | |
setup( | ||
name='openPMD-api', | ||
# note PEP-440 syntax: x.y.zaN but x.y.z.devN | ||
version='0.12.0.dev', | ||
version='0.12.0a', | ||
author='Fabian Koller, Franz Poeschel, Axel Huebl', | ||
author_email='[email protected], [email protected], [email protected]', | ||
maintainer='Axel Huebl', | ||
|